Skip to content

Commit 5be0045

Browse files
committed
Updating documentation
1 parent f42b64f commit 5be0045

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/orbital_visualization.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ using three atoms and an explicit *up direction*. The three atoms uniquely
133133
define the plane, while the up direction removes the sign ambiguity of the plane
134134
normal.
135135

136-
The plane specification is given as a list:
136+
The plane specification is given as a **tuple**:
137137

138138
.. math::
139139
140-
[i, j, k, \vec{u}]
140+
(i, j, k, \vec{u})
141141
142142
where:
143143

@@ -159,7 +159,7 @@ the up direction:
159159
ContourPlotter.build_contourplot(
160160
res,
161161
'ch4_contour.png',
162-
plane=[0, 1, 2, up],
162+
plane=(0, 1, 2, up), # note: this needs to be a tuple
163163
sz=3.0,
164164
npts=101,
165165
nrows=3,

0 commit comments

Comments
 (0)