Skip to content

Commit 1da3c2d

Browse files
committed
mh fix
1 parent b03924c commit 1da3c2d

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/saveEventsFile.m

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
%
1111
% :param action: Defines the operation to do. The different possibilities are
1212
% ``'init'``, ``'open'``, ``'open_stim'``, ``'save'`` or ``'close'``.
13-
% For more information on each case see below.
13+
% For more information on each case see below.
1414
% :type action: string
1515
% :param cfg: Configuration variable. See ``checkCFG()``.
1616
% :type cfg: structure
1717
% :param logFile: (n x 1) The ``logFile`` variable that contains the n events
1818
% you want to save must be a nx1 structure.
1919
% :type logFile: structure
20-
%
20+
%
2121
% .. todo:
2222
% - more details about how to structure the logFile variable
2323
%
@@ -51,8 +51,8 @@
5151
%
5252
% logFile = saveEventsFile('open', cfg, logFile);
5353
%
54-
% - ``'save'`` will save the data contained in logfile by using the file ID ``logFile.fileID``;
55-
% logfile must then contain:
54+
% - ``'save'`` will save the data contained in logfile by using the file ID
55+
% ``logFile.fileID``; logfile must then contain:
5656
%
5757
% - logFile.onset
5858
% - logFile.trial_type
@@ -62,9 +62,10 @@
6262
%
6363
% logFile = saveEventsFile('open', cfg, logFile);
6464
%
65-
% - ``'close'`` closes the file with file ID ``logFile.fileID``. If ``cfg.verbose`` is superior
66-
% to ``1`` then this will tell you where the file is located.
67-
%
65+
% - ``'close'`` closes the file with file ID ``logFile.fileID``.
66+
% If ``cfg.verbose`` is superior to ``1`` then this will tell you
67+
% where the file is located.
68+
%
6869
% Example::
6970
%
7071
% logFile = saveEventsFile('close', cfg, logFile)

src/utils/returnNbColumns.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
% :param nameExtraColumn: An entry of ``logFile.extraColumns``
1414
% :type nameExtraColumn: string
1515
%
16-
% :returns:
16+
% :returns:
1717
% - :nbCol: (integer) The number of columns associated to one entry of the extra
1818
% column list.
1919
%

0 commit comments

Comments
 (0)