diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-09-23 12:54:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-23 12:54:04 -0500 |
commit | 2de3dc4aa67f8842172d355b25889bf1c537de9c (patch) | |
tree | 9c2ecc7f89be519ff189c6ab31c1739eb629a140 /numpy/lib | |
parent | 6463a760273a43441e96db7713c443136196d850 (diff) | |
parent | 8478ba7e9d12272e70931878c83127cb7290d9c6 (diff) | |
download | numpy-2de3dc4aa67f8842172d355b25889bf1c537de9c.tar.gz |
Merge pull request #8084 from stuartarchibald/wip/np_lib_poly_roots_doc_fix
DOC: Fix erroneous return type description for np.roots.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/polynomial.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 81c72749a..281d79ec5 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -167,7 +167,7 @@ def roots(p): Returns ------- out : ndarray - An array containing the complex roots of the polynomial. + An array containing the roots of the polynomial. Raises ------ |