diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-04-17 19:47:11 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 19:47:11 -0600 |
commit | cffb693566360e33c76ef6d9981ced15dbebacff (patch) | |
tree | cce3397e5629d1c21fb942228011fb334daf9072 | |
parent | ec227f068f4a9f5036b02ea68ca8a419f2785cbe (diff) | |
parent | 3510e04d618bb5aad39cd3422316d0031351d8c8 (diff) | |
download | numpy-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.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 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 |