diff options
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 8ea71cde4..e9e066bea 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -1132,7 +1132,7 @@ def packbits(a, axis=None, order='big'): ``None`` implies packing the flattened array. order : 'big' or 'little', only the first letter is checked The order of the returned bits. The default is the common standard - where 3 => [0, 0, 0, 0, 0, 1, 1] + where [0, 0, 0, 0, 0, 1, 1] => 3 .. versionadded:: 1.17.0 |