Skip to content

Commit 38d02da

Browse files
committed
docs: more sphinx errors.
No errors locally but gh actions doesn't like it. Plus US spelling
1 parent d5eb02c commit 38d02da

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/source/user_guide/visualisation.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The default behaviour of the viewer can also be modified.
5656
To change the resolution of the scalar field or isosurfacing, either set the number of steps in x,y,z or the total number of elements of tht bounding box
5757

5858
.. code-block::
59+
5960
model.bounding_box.nsteps = np.array([nx,ny,nz])
6061
print(model.bounding_box.nsteps)
6162
model.bounding_box.nelements = 1e6

docs/source/user_guide/what_is_a_geological_model.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ If we were to change the length of the vector we would change the distance betwe
121121
mesh2 = bounding_box.structured_grid()
122122
mesh2.properties['val'] = interpolator.evaluate_value(mesh2.nodes)
123123
view = Loop3DView()
124-
view.add_mesh(mesh2.vtk().contour([-1, 0, 1]),colour='red')
125-
view.add_mesh(mesh.vtk().contour([-1, 0, 1]),colour='blue')
124+
view.add_mesh(mesh2.vtk().contour([-1, 0, 1]),color='red')
125+
view.add_mesh(mesh.vtk().contour([-1, 0, 1]),color='blue')
126126
view.add_points(data[["X", "Y", "Z"]].values)
127127
view.add_arrows(
128128
vector[["X", "Y", "Z"]].values,

0 commit comments

Comments
 (0)