summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorWarren Weckesser <warren.weckesser@gmail.com>2021-11-02 21:04:03 -0400
committerGitHub <noreply@github.com>2021-11-02 21:04:03 -0400
commitc3fb434ad0f03a75f645ca0ea800894fda126a55 (patch)
tree4cf896f0498d73b2c5bd9e91e20f7cf14b9ff61c /numpy
parent752b276ebc1ea3c88c44fe6e47c8912a83d88fd1 (diff)
parent9a067abf210ecd9696167f300f2b8454b48af4f5 (diff)
downloadnumpy-c3fb434ad0f03a75f645ca0ea800894fda126a55.tar.gz
Merge pull request #20281 from carterbox/master
DOC: Correct grammar in isfinite docstring
Diffstat (limited to 'numpy')
-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 8d9316f2c..c9be94569 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -1678,7 +1678,7 @@ add_newdoc('numpy.core.umath', 'invert',
add_newdoc('numpy.core.umath', 'isfinite',
"""
- Test element-wise for finiteness (not infinity or not Not a Number).
+ Test element-wise for finiteness (not infinity and not Not a Number).
The result is returned as a boolean array.