Skip to content

Commit b03924c

Browse files
authored
Merge pull request #138 from marcobarilari/marco_build-rtd
[DOC] build the rtd without warnings
2 parents 9505caa + c6cc1e0 commit b03924c

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

src/convertSourceToRaw.m

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ function convertSourceToRaw(cfg)
1010
%
1111
% convertSourceToRaw(cfg)
1212
%
13-
% :param cfg: cfg structure is needed only for providing the path in
14-
% ``cfg.dir.output``
13+
% :param cfg: cfg structure is needed only for providing the path in ``cfg.dir.output``.
1514
% :type cfg: structure
1615
%
1716
% :output:
18-
% - creates dummy README and CHANGE file
19-
% - copy source dir to raw dir
20-
% - remove the date suffix (_date-*) from the files where it is present
21-
% - zips the _stim files.
17+
% - :creates: a dummy README and CHANGE file
18+
% - :copies: ``source`` directory to ``raw`` directory
19+
% - :removes: the date suffix ``_date-*`` from the files where it is present
20+
% - :zips: the ``_stim.tsv`` files.
2221

2322
sourceDir = fullfile(cfg.dir.output, 'source');
2423
rawDir = fullfile(cfg.dir.output, 'raw');

src/createFilename.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
%
2222
% The behavior of this function depends on:
2323
% - ``cfg.testingDevice``:
24-
% - set to ``pc`` (dummy try) or ``beh`` can work for behavioral experiment.
25-
% - set on ``mri`` for fMRI experiment.
26-
% - set on ``eeg`` or ``ieeg`` can work for electro encephalography or
27-
% intracranial eeg
28-
% - set on ``meg`` can work for magneto encephalography
24+
% + set to ``pc`` (dummy try) or ``beh`` can work for behavioral experiment.
25+
% + set on ``mri`` for fMRI experiment.
26+
% + set on ``eeg`` or ``ieeg`` can work for electro encephalography or intracranial eeg
27+
% + set on ``meg`` can work for magneto encephalography
28+
%
2929
% - ``cfg.eyeTracker.do`` set to ``true``, can work for simple eyetracking data.
3030
%
3131
% See ``test_createFilename`` in the ``tests`` folder for more details on how to use it.

src/createJson.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function createJson(varargin)
2626
% a valid BIDS dataset.
2727
% :type extraInfo: structure
2828
%
29-
% :output: - :``*.json``: (jsonfile) The file name corresponds to the run + suffix depending on
30-
% the arguments passed in.
29+
% :output:
30+
% - :``*.json``: (jsonfile) The file name corresponds to the run + suffix depending
31+
% on the arguments passed in.
3132
%
3233
% .. TODO:
3334
%

src/gui/setDefaultResponses.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
%
1414
% :returns: - :responses: (cell) It contains the response set by default
1515
% - :cfg: (structure) Configuration update with ``cfg.debug.do`` set to false if not
16-
% set by the user.
16+
% set by the user.
1717
%
1818

1919
if nargin < 1

src/utils/returnNbColumns.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
% :param nameExtraColumn: An entry of ``logFile.extraColumns``
1414
% :type nameExtraColumn: string
1515
%
16-
% :returns: - :nbCol: (integer) The number of columns associated to one entry of the extra
17-
% column list.
16+
% :returns:
17+
% - :nbCol: (integer) The number of columns associated to one entry of the extra
18+
% column list.
1819
%
1920

2021
thisExtraColumn = logFile(1).extraColumns.(nameExtraColumn);

0 commit comments

Comments
 (0)