diff options
author | Kimikazu Kato <kimikazu@gmail.com> | 2018-05-31 15:18:40 +0900 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-05-30 23:18:40 -0700 |
commit | a2ff5aa5268b72986f3e84836b52822c209d088d (patch) | |
tree | 4a989b65fb79e406e933bd916d72a320bc80fb27 /numpy | |
parent | a4653902cd6ad01c5051deb5c09fae315b1b4a1b (diff) | |
download | numpy-a2ff5aa5268b72986f3e84836b52822c209d088d.tar.gz |
DOC: sqrt can return 0
Diffstat (limited to 'numpy')
-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 bd90d0460..f7d58a26f 100644 --- a/numpy/core/code_generators/ufunc_docstrings.py +++ b/numpy/core/code_generators/ufunc_docstrings.py @@ -3365,7 +3365,7 @@ add_newdoc('numpy.core.umath', 'sinh', add_newdoc('numpy.core.umath', 'sqrt', """ - Return the positive square-root of an array, element-wise. + Return the non-negative square-root of an array, element-wise. Parameters ---------- |