Skip to content

Commit 9f95d24

Browse files
committed
Fix the typo and unavailable links.
1 parent 0a6e0fa commit 9f95d24

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

surfer/viz.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ def add_overlay(self, source, min=2, max="robust_max", sign="abs",
934934
be thrown.
935935
**kwargs: additional keyword arguments
936936
These are passed to the underlying
937-
:func:`mayavi.mlab.pipeline.surface` call.
937+
`mayavi.mlab.pipeline.surface` call.
938938
939939
"""
940940
hemi = self._check_hemi(hemi)
@@ -1042,7 +1042,7 @@ def add_data(self, array, min=None, max=None, thresh=None,
10421042
If not None, override default verbose level (see surfer.verbose).
10431043
**kwargs: additional keyword arguments
10441044
These are passed to the underlying
1045-
:func:`mayavi.mlab.pipeline.surface` call.
1045+
`mayavi.mlab.pipeline.surface` call.
10461046
10471047
Notes
10481048
-----
@@ -1233,7 +1233,7 @@ def add_annotation(self, annot, borders=True, alpha=1, hemi=None,
12331233
Probably useful only when showing annotation borders.
12341234
**kwargs: additional keyword arguments
12351235
These are passed to the underlying
1236-
:func:`mayavi.mlab.pipeline.surface` call.
1236+
`mayavi.mlab.pipeline.surface` call.
12371237
"""
12381238
hemis = self._check_hemis(hemi)
12391239

@@ -1354,7 +1354,7 @@ def add_label(self, label, color=None, alpha=1, scalar_thresh=None,
13541354
``brain.add_label('cuneus', subdir='aparc')``).
13551355
**kwargs: additional keyword arguments
13561356
These are passed to the underlying
1357-
:func:`mayavi.mlab.pipeline.surface` call.
1357+
`mayavi.mlab.pipeline.surface` call.
13581358
Notes
13591359
-----
13601360
To remove previously added labels, run Brain.remove_labels().
@@ -1569,7 +1569,7 @@ def add_morphometry(self, measure, grayscale=False, hemi=None,
15691569
If True, show a colorbar corresponding to the overlay data.
15701570
**kwargs: additional keyword arguments
15711571
These are passed to the underlying
1572-
:func:`mayavi.mlab.pipeline.surface` call.
1572+
`mayavi.mlab.pipeline.surface` call.
15731573
"""
15741574
hemis = self._check_hemis(hemi)
15751575
morph_files = []
@@ -1668,7 +1668,7 @@ def add_foci(self, coords, coords_as_verts=False, map_surface=None,
16681668
be thrown.
16691669
**kwargs: additional keyword arguments
16701670
These are passed to the underlying
1671-
:func:`mayavi.mlab.point3d` call.
1671+
:func:`mayavi.mlab.points3d` call.
16721672
"""
16731673
from matplotlib.colors import colorConverter
16741674
hemi = self._check_hemi(hemi)
@@ -1744,7 +1744,7 @@ def add_contour_overlay(self, source, min=None, max=None,
17441744
If True, show the colorbar for the scalar value.
17451745
**kwargs: additional keyword arguments
17461746
These are passed to the underlying
1747-
:func:`mayavi.mlab.pipeline.contour_surface` call.
1747+
`mayavi.mlab.pipeline.contour_surface` call.
17481748
"""
17491749
hemi = self._check_hemi(hemi)
17501750

@@ -1800,7 +1800,7 @@ def add_text(self, x, y, text, name, color=None, opacity=1.0,
18001800
Column index of which brain to use
18011801
**kwargs: additional keyword arguments
18021802
These are passed to the underlying
1803-
:func:`mayavi.mlab.text3d` call.
1803+
:func:`mayavi.mlab.text3d` call.
18041804
"""
18051805
if name in self.texts_dict:
18061806
self.texts_dict[name]['text'].remove()

0 commit comments

Comments
 (0)