Skip to content

Commit a716834

Browse files
committed
mh fix
1 parent f5c47ba commit a716834

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/eyeTracker.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function [el, cfg] = eyeTracker(input, cfg)
22
% [el] = eyeTracker(input, cfg)
33
%
4-
% Wrapper function that deals with all the necessery actions to implement
4+
% Wrapper function that deals with all the necessery actions to implement
55
% Eye Tracker recording with eyelink.
66
%
77
% INPUT

src/utils/isOctave.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function retval = isOctave
22
% Return: true if the environment is Octave.
33
% mostly used to testing when PTB is not in the path
4-
4+
55
persistent cacheval % speeds up repeated calls
66

77
if isempty (cacheval)

src/utils/setDefaults.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
if isfield(structure, names{i}) && isstruct(structure.(names{i}))
1616

1717
structure.(names{i}) = ...
18-
setDefaults(...
18+
setDefaults( ...
1919
structure.(names{i}), ...
20-
fieldsToSet.(names{i})...
20+
fieldsToSet.(names{i}) ...
2121
);
2222

2323
else
@@ -38,4 +38,4 @@
3838
if ~isfield(structure, fieldName)
3939
structure.(fieldName) = value;
4040
end
41-
end
41+
end

0 commit comments

Comments
 (0)