Skip to content

Commit 4d1352a

Browse files
committed
STY: Codespell
1 parent 9f17357 commit 4d1352a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ skip = .git,*.pdf,*.svg,external
1010
# ALS, FWE - neuroimaging specific abbrevs
1111
# Comision - foreign word used
1212
# expad - AFNI flag
13-
ignore-words-list = te,inport,objekt,jist,nd,hel,inout,fith,whos,fot,ue,shs,smal,nam,filetest,suh,noo,reson,als,fwe,crasher,comision,afile,expad
13+
ignore-words-list = te,inport,objekt,jist,nd,hel,inout,fith,whos,fot,ue,shs,smal,nam,filetest,suh,noo,reson,als,fwe,crasher,comision,afile,expad,burnin

nipype/interfaces/freesurfer/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2821,7 +2821,7 @@ def _format_arg(self, name, spec, value):
28212821
if name in ["in_T1", "in_aseg"]:
28222822
# These inputs do not take full paths as inputs or even basenames
28232823
basename = os.path.basename(value)
2824-
# whent the -mgz flag is specified, it assumes the mgz extension
2824+
# when the -mgz flag is specified, it assumes the mgz extension
28252825
if self.inputs.mgz:
28262826
prefix = os.path.splitext(basename)[0]
28272827
else:

nipype/pipeline/plugins/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ def _get_args(self, node, keywords):
628628
def _submit_graph(self, pyfiles, dependencies, nodes):
629629
"""
630630
pyfiles: list of files corresponding to a topological sort
631-
dependencies: dictionary of dependencies based on the toplogical sort
631+
dependencies: dictionary of dependencies based on the topological sort
632632
"""
633633
raise NotImplementedError
634634

nipype/utils/docparse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def insert_doc(doc, new_items):
131131
Parameters
132132
----------
133133
doc : str
134-
The existing docstring we're inserting docmentation into.
134+
The existing docstring we're inserting documentation into.
135135
new_items : list
136136
List of strings to be inserted in the ``doc``.
137137

nipype/utils/matlabtools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def mlab_tempfile(dir=None):
5656
# infinite loop for some strange reason, we only try 100 times.
5757
for n in range(100):
5858
f = tempfile.NamedTemporaryFile(suffix=".m", prefix="tmp_matlab_", dir=dir)
59-
# Check the file name for matlab compilance
59+
# Check the file name for matlab compliance
6060
fname = os.path.splitext(os.path.basename(f.name))[0]
6161
if valid_name.match(fname):
6262
break

0 commit comments

Comments
 (0)