Skip to content

Commit 115b17c

Browse files
committed
fix some docutil warnings
1 parent 54130ce commit 115b17c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

neo/core/segment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Segment(Container):
7070
Notes
7171
-----
7272
73-
*Container of*:
73+
Container of:
7474
:class:`Epoch`
7575
:class:`Event`
7676
:class:`AnalogSignal`

neo/rawio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
118118
.. autoclass:: neo.rawio.NeuroNexusRawIO
119119
120-
.. autoattributes:: extensions
120+
.. autoattribute:: extensions
121121
122122
.. autoclass:: neo.rawio.NeuroScopeRawIO
123123

neo/rawio/intanrawio.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
RHD headerless binary support 3.x
1212
RHS headerless binary support 3.x
1313
14+
1415
See:
16+
1517
* http://intantech.com/files/Intan_RHD2000_data_file_formats.pdf
1618
* http://intantech.com/files/Intan_RHS2000_data_file_formats.pdf
1719
20+
1821
Author: Samuel Garcia (Initial), Zach McKenzie & Heberto Mayorquin (Updates)
1922
2023
"""
@@ -50,6 +53,7 @@ class IntanRawIO(BaseRawIO):
5053
check we perform is that timestamps are continuous. Setting this to True will ignore this check and set
5154
the attribute `discontinuous_timestamps` to True if the timestamps are not continous. This attribute can be checked
5255
after parsing the header to see if the timestamps are continuous or not.
56+
5357
Notes
5458
-----
5559
* The Intan reader can handle two file formats 'rhd' and 'rhs'. It will automatically
@@ -67,6 +71,7 @@ class IntanRawIO(BaseRawIO):
6771
* Intan files contain amplifier channels labeled 'A', 'B' 'C' or 'D'
6872
depending on the port in which they were recorded along with the following
6973
additional streams.
74+
7075
0: 'RHD2000' amplifier channel
7176
1: 'RHD2000 auxiliary input channel',
7277
2: 'RHD2000 supply voltage channel',
@@ -88,6 +93,7 @@ class IntanRawIO(BaseRawIO):
8893
one long vector, which must be post-processed to extract individual digital channel information.
8994
See the intantech website for more information on performing this post-processing.
9095
96+
9197
Examples
9298
--------
9399
>>> import neo.rawio

0 commit comments

Comments
 (0)