Skip to content

Commit cbeadc1

Browse files
CerenBRemi-Gau
andauthored
Apply suggestions from code review
Co-authored-by: Remi Gau <[email protected]>
1 parent c9e04f2 commit cbeadc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ Remember that updates to submodules need to be committed as well.
8585

8686
So say you want to clone a repo that has some nested submodules, then you would type this to get the content of all the submodules at once (here with my experiment repo):
8787
``` bash
88-
git clone --recurse-submodules https://github.com/Repo-Folder/yourExperiment.git
88+
git clone --recurse-submodules https://github.com/user_name/yourExperiment.git
8989
```
9090
This would be the way to do it "by hand"
9191

9292
```bash
9393
# clone the repo
94-
git clone https://github.com/Repo-Folder/yourExperiment.git
94+
git clone https://github.com/user_name/yourExperiment.git
9595

9696
# go into the directory
97-
cd Repo-Folder/yourExperiment
97+
cd yourExperiment
9898

9999
# initialize and get the content of the first level of submodules (CPP_PTB and CPP_BIDS)
100100
git submodule init

waitForTrigger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function waitForTrigger(cfg, deviceNumber)
2828
if strcmpi(cfg.testingDevice, 'mri')
2929

3030
msg = ['Experiment starting in ', ...
31-
num2str(cfg.numTriggers - triggerCounter), '...'];
31+
num2str(cfg.mri.triggerNb - triggerCounter), '...'];
3232
talkToMe(cfg, msg);
3333

3434
while triggerCounter < cfg.mri.triggerNb

0 commit comments

Comments
 (0)