Skip to content

Commit 89cd205

Browse files
committed
Tweak SelectFiles __init__ docstring for clarity
1 parent bc6adbe commit 89cd205

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

nipype/interfaces/io.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,14 @@ def __init__(self, templates, **kwargs):
606606
Parameters
607607
----------
608608
templates : dictionary
609-
Mapping string keys to string tempalate values.
609+
Mapping from string keys to string template values.
610610
The keys become output fields on the interface.
611611
The templates should use {}-formatting syntax, where
612-
the keys in curly braces become inputs fields on the interface.
612+
the names in curly braces become inputs fields on the interface.
613613
Format strings can also use glob wildcards to match multiple
614-
files.
614+
files. At runtime, the values of the interface inputs will be
615+
plugged into these templates, and the resulting strings will be
616+
used to select files.
615617
616618
"""
617619
super(SelectFiles, self).__init__(**kwargs)

0 commit comments

Comments
 (0)