diff options
author | Johan von Forstner <5310424+johan12345@users.noreply.github.com> | 2021-10-11 15:20:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-11 15:20:09 +0200 |
commit | 952ae80c9e780100a0fa017fe8ef0fe988ba4ad2 (patch) | |
tree | a01550b37a3e4a7de7eb010b26e4e4bb51e6d2c1 | |
parent | 024d64b53e1f4d7e4cf28c9556dd065ef3be4457 (diff) | |
download | numpy-952ae80c9e780100a0fa017fe8ef0fe988ba4ad2.tar.gz |
DOC: fix typo in docstring of bitwise_or
-rw-r--r-- | numpy/core/code_generators/ufunc_docstrings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py index 9ae9a24c0..4e1182de6 100644 --- a/numpy/core/code_generators/ufunc_docstrings.py +++ b/numpy/core/code_generators/ufunc_docstrings.py @@ -668,7 +668,7 @@ add_newdoc('numpy.core.umath', 'bitwise_or', Examples -------- - The number 13 has the binaray representation ``00001101``. Likewise, + The number 13 has the binary representation ``00001101``. Likewise, 16 is represented by ``00010000``. The bit-wise OR of 13 and 16 is then ``000111011``, or 29: |