Skip to content

Commit 7633b38

Browse files
authored
fix spelling typo
1 parent 374ba71 commit 7633b38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neo/rawio/intanrawio.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,11 +325,11 @@ def _get_analogsignal_chunk_header_attached(self, i_start, i_stop, stream_index,
325325

326326

327327
# This is False for Temperature and timestamps
328-
mulitple_samples_per_block = len(shape) == 2
328+
multiple_samples_per_block = len(shape) == 2
329329

330330
# In the header attached case the data for each channel comes interleaved in blocks
331331
# To avoid unecessary memory access we can calculate the blocks we need to access beforehand:
332-
if mulitple_samples_per_block:
332+
if multiple_samples_per_block:
333333
block_size = shape[1]
334334
block_start = i_start // block_size
335335
block_stop = i_stop // block_size + 1
@@ -339,7 +339,7 @@ def _get_analogsignal_chunk_header_attached(self, i_start, i_stop, stream_index,
339339
# raw_data is a structured memmap with a field for each channel_id
340340
for chunk_index, channel_id in enumerate(channel_ids):
341341
data_chan = self._raw_data[channel_id]
342-
if mulitple_samples_per_block:
342+
if multiple_samples_per_block:
343343
sigs_chunk[:, chunk_index] = data_chan[block_start:block_stop].flatten()[sl0:sl1]
344344
else:
345345
sigs_chunk[:, chunk_index] = data_chan[i_start:i_stop]

0 commit comments

Comments
 (0)