Skip to content

Commit 2498d93

Browse files
committed
fix typo
1 parent 9c3855a commit 2498d93

File tree

1 file changed

+3
-3
lines changed
  • pydra/tasks/fsl/preprocess

1 file changed

+3
-3
lines changed

pydra/tasks/fsl/preprocess/bet.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,11 +294,11 @@ class BET(ShellCommandTask):
294294
Example
295295
-------
296296
>>> task = BET()
297-
>>> task.inputs.in_file = "test1.nii.gz"
298-
>>> task.inputs.out_file = "test1_brain.nii.gz"
297+
>>> task.inputs.in_file = "test.nii.gz"
298+
>>> task.inputs.out_file = "test_brain.nii.gz"
299299
>>> task.inputs.frac = 0.7
300300
>>> task.cmdline
301-
'bet test1.nii.gz test1_brain.nii.gz -f 0.70'
301+
'bet test.nii.gz test_brain.nii.gz -f 0.70'
302302
"""
303303

304304
input_spec = BET_input_spec

0 commit comments

Comments
 (0)