Skip to content

Commit 4b50091

Browse files
committed
doc: few minor typos
1 parent 7410d05 commit 4b50091

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/rsfmri_fsl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
rsfMRI: FSL - CSF regressed
77
===========================
88
9-
A pipeline example that uses intergrates several interfaces to
9+
A pipeline example that intergrates several interfaces to
1010
perform a first and second level analysis on a two-subject data
1111
set.
1212
1313
14-
1. Tell python where to find the appropriate functions.
14+
1. Tell Python where to find the appropriate functions.
1515
"""
1616

1717
import numpy as np

examples/rsfmri_preprocessing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def motion_regressors(motion_params, order=2, derivatives=2):
156156

157157

158158
def build_filter1(motion_params, comp_norm, outliers):
159-
"""Builds a regressor set comprisong motion parameters, composite norm and
159+
"""Builds a regressor set comparison motion parameters, composite norm and
160160
outliers
161161
162162
The outliers are added as a single time point column for each outlier
@@ -364,7 +364,7 @@ def create_workflow(files,
364364
fssource.inputs.subject_id = subject_id
365365
fssource.inputs.subjects_dir = os.environ['SUBJECTS_DIR']
366366

367-
# Extract wm+csf, brain masks by eroding freesurfer lables and then
367+
# Extract wm+csf, brain masks by eroding freesurfer labels and then
368368
# transform the masks into the space of the median
369369
wmcsf = Node(freesurfer.Binarize(), name='wmcsfmask')
370370
mask = wmcsf.clone('anatmask')

nipype/interfaces/dcmstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Provides interfaces to various commands provided by freeusrfer
1+
"""Provides interfaces to various commands provided by FreeSurfer
22
33
Change directory to provide relative paths for doctests
44
>>> import os

nipype/interfaces/freesurfer/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
22
# vi: set ft=python sts=4 ts=4 sw=4 et:
3-
"""Provides interfaces to various commands provided by freeusrfer
3+
"""Provides interfaces to various commands provided by FreeSurfer
44
55
Change directory to provide relative paths for doctests
66
>>> import os

0 commit comments

Comments
 (0)