Skip to content

Commit 5d335cb

Browse files
committed
Merge pull request #1445 from DimitriPapadopoulos/master
Minor documentation fixes
2 parents abe8bc7 + c9d8379 commit 5d335cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/dcm2nii.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Dcm2niiOutputSpec(TraitedSpec):
4949

5050

5151
class Dcm2nii(CommandLine):
52-
"""Uses MRICRON's dcm2nii to convert dicom files
52+
"""Uses MRIcron's dcm2nii to convert dicom files
5353
5454
Examples
5555
========
@@ -107,7 +107,7 @@ def _parse_stdout(self, stdout):
107107
if line.startswith("Saving "):
108108
out_file = line[len("Saving "):]
109109
elif line.startswith("GZip..."):
110-
# for gzipped outpus files are not absolute
110+
# for gzipped output files are not absolute
111111
fname = line[len("GZip..."):]
112112
if len(files) and os.path.basename(files[-1]) == fname[:-3]:
113113
# we are seeing a previously reported conversion

0 commit comments

Comments
 (0)