Skip to content

Commit 32aac04

Browse files
committed
typo fix
1 parent 17f9d1e commit 32aac04

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Subjects, session and run number labels will be numbers with zero padding up to
3636

3737
A session folder will ALWAYS be created even if not requested (default will be `ses-001`).
3838

39-
Task labels will be printed in camelCase in the filenames.
39+
Task labels will be printed in camelCase in the filenames.
4040

4141
Time stamps are added directly in the filename by adding a suffix `_date-YYYYMMDDHHMM` which makes the file name non-BIDS compliant. This was added to prevent overwriting files in case a certain run needs to be done a second time because of a crash (Some of us are paranoid about keeping even cancelled runs during my experiments). This suffix should be removed to make the data set BIDS compliant. See `convertSourceToRaw.m` for more details.
4242

@@ -206,7 +206,7 @@ For the moment the date of acquisition is appended to the filename
206206

207207
Function to save output files for events that will be BIDS compliant.
208208

209-
If the user DOES NOT provide `onset`, `trial_type`, this events will be skipped. `duration` will be set to "NaN" if
209+
If the user DOES NOT provide `onset`, `trial_type`, this events will be skipped. `duration` will be set to "NaN" if
210210
no value is provided.
211211

212212
### checkCFG
@@ -216,7 +216,7 @@ Check that we have all the fields that we need in the experiment parameters.
216216
## CFG content
217217

218218
```matlab
219-
%% Can be modified by users
219+
%% Can be modified by users
220220
% but their effect might only be effective after running
221221
% checkCFG
222222
@@ -290,7 +290,7 @@ cd fullpath_to_directory_where_to_install
290290
# use git to download the code
291291
git clone https://github.com/cpp-lln-lab/CPP_BIDS.git
292292
# move into the folder you have just created
293-
cd CPP_PTB
293+
cd CPP_BIDS
294294
# add the src folder to the matlab path and save the path
295295
matlab -nojvm -nosplash -r "addpath(fullfile(pwd, 'src')); savepath ();"
296296
```
@@ -316,18 +316,18 @@ cd fullpath_to_directory_where_to_install
316316
# use git to download the code
317317
git submodule add https://github.com/cpp-lln-lab/CPP_BIDS.git
318318
# move into the folder you have just created
319-
cd CPP_PTB
319+
cd CPP_BIDS
320320
# add the src folder to the matlab path and save the path
321321
matlab -nojvm -nosplash -r "addpath(fullfile(pwd, 'src'))"
322322
```
323323

324-
To get the latest commit you then need to update the submodule with the information
324+
To get the latest commit you then need to update the submodule with the information
325325
on its remote repository and then merge those locally.
326326
```bash
327327
git submodule update --remote --merge
328328
```
329329

330-
Remember that updates to submodules need to be commited as well.
330+
Remember that updates to submodules need to be commited as well.
331331

332332
**TO DO**
333333
<!-- Submodules

0 commit comments

Comments
 (0)