Skip to content

Commit fc3c6c2

Browse files
committed
fix errors from auto-rename out->info in setup.py
1 parent 1ad7f40 commit fc3c6c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Note that not all possible configuration values are present in this
1111
# autogenerated file.
1212
#
13-
# All configuration values have a default; values that are commented info
13+
# All configuration values have a default; values that are commented out
1414
# serve to show the default.
1515

1616

numcodecs/delta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def decode(self, buf, out=None):
7575

7676
# setup decoded output
7777
if isinstance(out, np.ndarray):
78-
# optimization, can decode directly to info
78+
# optimization, can decode directly to out
7979
dec = out.reshape(-1, order='A')
8080
copy_needed = False
8181
else:

numcodecs/packbits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def decode(self, buf, out=None):
6969
# view encoded data as ndarray
7070
enc = ndarray_from_buffer(buf, 'u1')
7171

72-
# find info how many bits were padded
72+
# find out how many bits were padded
7373
n_bits_padded = int(enc[0])
7474

7575
# apply decoding

0 commit comments

Comments
 (0)