Skip to content

Commit d8d4c5d

Browse files
committed
fix mh errors
1 parent 5e8d1cc commit d8d4c5d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/checkCFG.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354

355355
% REQUIRED Position of the dewar during the MEG scan: "upright", "supine" or
356356
% "degrees" of angle from vertical: for example on CTF systems,
357-
% upright=15°, supine = 90°:
357+
% upright=15 deg, supine = 90 deg:
358358
fieldsToSet.bids.meg.DewarPosition = [];
359359

360360
% REQUIRED List of temporal and/or spatial software filters applied, or ideally
File renamed without changes.

src/utils/checkCppBidsDependencies.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ function checkCppBidsDependencies(cfg)
2222

2323
pth = fullfile(fileparts(mfilename('fullpath')), '..', '..');
2424
addpath(fullfile(pth, 'lib', 'utils'));
25-
25+
2626
pth = fullfile(fileparts(mfilename('fullpath')), '..', '..');
2727
pth = abspath(pth);
28-
28+
2929
checkSubmodule(fullfile(pth, 'lib', 'JSONio'));
3030
checkSubmodule(fullfile(pth, 'lib', 'bids-matlab'));
3131

src/utils/printCreditsCppBids.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ function printCreditsCppBids(cfg)
2828
if verbose > 1
2929

3030
contributors = { ...
31-
'Rémi Gau', ...
31+
'Remi Gau', ...
3232
'Marco Barilari', ...
3333
'Ceren Battal', ...
3434
'Tomas Lenc'};
35-
35+
3636
DOI_URL = 'https://doi.org/10.5281/zenodo.4007674';
3737

3838
repoURL = 'https://github.com/cpp-lln-lab/CPP_BIDS';

tests/test_createValidName.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function test_createTaskNameRemoveInvalidCharacters()
1212

1313
%% set up
1414

15-
taskName = '&|@#-_(§!{})[]ù%£+/=:;.?,\<> visual task';
15+
taskName = '&|@#-_(!{})[]%+/=:;.?,\<> visual task';
1616

1717
[~, taskNameValid] = createValidName(taskName);
1818

0 commit comments

Comments
 (0)