Skip to content

Commit 7f345ab

Browse files
committed
fix typo
1 parent 240c6d2 commit 7f345ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bidspm.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function bidspm(varargin)
1616
isEmptyOrCellstr = @(x) isempty(x) || iscellstr(x); %#ok<*ISCLSTR>
1717
isFileOrStruct = @(x) isstruct(x) || exist(x, 'file') == 2;
1818

19-
isLogical = @(x) islogial(x) && numel(x) == 1;
19+
isLogical = @(x) islogical(x) && numel(x) == 1;
2020
isChar = @(x) ischar(x);
2121
isPositiveScalar = @(x) isnumeric(x) && numel(x) == 1 && x >= 0;
2222

0 commit comments

Comments
 (0)