summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-10-11 16:51:45 +0300
committerGitHub <noreply@github.com>2021-10-11 16:51:45 +0300
commitc2d2104356b51be6c9596d354d7fa389c6a8ddbc (patch)
treea1a0c969a77c2187a57eb4e7de38fcda9b79c05f
parent59123d2f2809bd289abd93db02e895db3b800f4e (diff)
parent952ae80c9e780100a0fa017fe8ef0fe988ba4ad2 (diff)
downloadnumpy-c2d2104356b51be6c9596d354d7fa389c6a8ddbc.tar.gz
Merge pull request #20091 from johan12345/patch-1
DOC: fix typo in docstring of bitwise_or
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py2
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: