Skip to content

Commit 8c9c041

Browse files
committed
DOCTEST: Resolve typos
1 parent 903dee5 commit 8c9c041

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/mrtrix3/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ class MaskFilter(CommandLine):
12301230
>>> mf.inputs.in_file = 'mask.mif'
12311231
>>> mf.inputs.filter = 'dilate'
12321232
>>> mf.inputs.npass = 2
1233-
>>> mf.out_file = 'mask_filtered.mif'
1233+
>>> mf.inputs.out_file = 'mask_filtered.mif'
12341234
>>> mf.cmdline
12351235
'maskfilter -npass 2 mask.mif dilate mask_filtered.mif'
12361236
>>> mf.run()
@@ -1289,7 +1289,7 @@ class MTNormalise(CommandLine):
12891289
-------
12901290
12911291
>>> import nipype.interfaces.mrtrix3 as mrt
1292-
>>> mtn = mrt.MTnormalise()
1292+
>>> mtn = mrt.MTNormalise()
12931293
>>> mtn.inputs.fod_wm = 'wmfod.mif'
12941294
>>> mtn.inputs.fod_gm = 'gmfod.mif'
12951295
>>> mtn.inputs.fod_csf = 'csffod.mif'
@@ -1350,7 +1350,7 @@ class Generate5tt2gmwmi(CommandLine):
13501350
-------
13511351
13521352
>>> import nipype.interfaces.mrtrix3 as mrt
1353-
>>> gmwmi = mrt.Generate5TT2GMWMI()
1353+
>>> gmwmi = mrt.Generate5tt2gmwmi()
13541354
>>> gmwmi.inputs.in_file = '5tt_in.mif'
13551355
>>> gmwmi.inputs.mask_out = 'mask_gmwmi.mif'
13561356
>>> gmwmi.cmdline

0 commit comments

Comments
 (0)