Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Remove repeated words #934

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/02-common-principles.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ misunderstanding we clarify them here.
the final `_`), right before the **File extension**, for example, it is `eeg` in
`sub-05_task-matchingpennies_eeg.vhdr`.

1. **File extension** - a portion of the the file name after the left-most
1. **File extension** - a portion of the file name after the left-most
period (`.`) preceded by any other alphanumeric. For example, `.gitignore` does
not have a file extension, but the file extension of `test.nii.gz` is `.nii.gz`.
Note that the left-most period is included in the file extension.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ The OPTIONAL [`acq-<label>`](../99-appendices/09-entities.md#acq)
key/value pair corresponds to a custom label the user
MAY use to distinguish a different set of parameters used for acquiring the same
modality. For example this should be used when a study includes two T1w images -
one full brain low resolution and and one restricted field of view but high
one full brain low resolution and one restricted field of view but high
resolution. In such case two files could have the following names:
`sub-01_acq-highres_T1w.nii.gz` and `sub-01_acq-lowres_T1w.nii.gz`, however the
user is free to choose any other label than `highres` and `lowres` as long as
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ Date time information MUST be expressed as indicated in [Units](../02-common-pri
{{ MACROS___make_filename_template(datatypes=["meg"], suffixes=["channels"]) }}

This file is RECOMMENDED as it provides easily searchable information across
BIDS datasets for for example, general curation, response to queries or batch
BIDS datasets for example, general curation, response to queries or batch
analysis.
To avoid confusion, the channels SHOULD be listed in the order they
appear in the MEG data file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Date time information MUST be expressed as indicated in [Units](../02-common-pri
{{ MACROS___make_filename_template(datatypes=["eeg"], suffixes=["channels"]) }}

This file is RECOMMENDED as it provides easily searchable information across
BIDS datasets for for example, general curation, response to queries or batch
BIDS datasets for example, general curation, response to queries or batch
analysis.
To avoid confusion, the channels SHOULD be listed in the order they
appear in the EEG data file.
Expand Down
4 changes: 2 additions & 2 deletions src/99-appendices/08-coordinate-systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ information for a coordinate system (origin and orientation) are specified in
`<CoordSysType>CoordinateSystem`.
The third piece of information for a coordinate system (units) are specified in
`<CoordSysType>CoordinateUnits`.
Here, `<CoordSysType>` can be one of of the following,
Here, `<CoordSysType>` can be one of the following,
depending on the data that is supposed to be documented:

- `MEG`
Expand Down Expand Up @@ -174,7 +174,7 @@ Restricted keywords for the `<CoordSysType>CoordinateSystem` field in the

- `ScanRAS`: The origin of the coordinate system is the center of the
gradient coil for the corresponding T1w image of the subject, and the x-axis
increases left to right, the y-axis increases posterior to to anterior and
increases left to right, the y-axis increases posterior to anterior and
the z-axis increases inferior to superior. For more information see the
[Nipy Documentation](https://nipy.org/nibabel/coordinate_systems.html). It is
strongly encouraged to align the subject's T1w to ACPC so that the `ACPC`
Expand Down
2 changes: 1 addition & 1 deletion src/schema/objects/entities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ acquisition:
user MAY use to distinguish a different set of parameters used for
acquiring the same modality.
For example this should be used when a study includes two T1w images - one
full brain low resolution and and one restricted field of view but high
full brain low resolution and one restricted field of view but high
resolution.
In such case two files could have the following names:
`sub-01_acq-highres_T1w.nii.gz` and `sub-01_acq-lowres_T1w.nii.gz`, however
Expand Down
2 changes: 1 addition & 1 deletion src/schema/objects/suffixes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ UNIT1:
Note that although this image is T1-weighted, regions without MR signal will
contain white salt-and-pepper noise that most segmentation algorithms will
fail on.
Therefore, it is important to dissociate it from from `T1w`.
Therefore, it is important to dissociate it from `T1w`.
Please see [`MP2RAGE` specific notes](/99-appendices/11-qmri.html#unit1-images)
in the qMRI appendix for further information.
VFA:
Expand Down