summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-04-17 19:47:11 -0600
committerGitHub <noreply@github.com>2021-04-17 19:47:11 -0600
commitcffb693566360e33c76ef6d9981ced15dbebacff (patch)
treecce3397e5629d1c21fb942228011fb334daf9072
parentec227f068f4a9f5036b02ea68ca8a419f2785cbe (diff)
parent3510e04d618bb5aad39cd3422316d0031351d8c8 (diff)
downloadnumpy-cffb693566360e33c76ef6d9981ced15dbebacff.tar.gz
Merge pull request #18801 from slayoo/patch-1
DOC: fix typo in frexp docstring
-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 5026bfae8..f19946be4 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -4081,7 +4081,7 @@ add_newdoc('numpy.core.umath', 'frexp',
Decompose the elements of x into mantissa and twos exponent.
Returns (`mantissa`, `exponent`), where `x = mantissa * 2**exponent``.
- The mantissa is lies in the open interval(-1, 1), while the twos
+ The mantissa lies in the open interval(-1, 1), while the twos
exponent is a signed integer.
Parameters