summaryrefslogtreecommitdiff
path: root/numpy/lib
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-09-23 12:54:04 -0500
committerGitHub <noreply@github.com>2016-09-23 12:54:04 -0500
commit2de3dc4aa67f8842172d355b25889bf1c537de9c (patch)
tree9c2ecc7f89be519ff189c6ab31c1739eb629a140 /numpy/lib
parent6463a760273a43441e96db7713c443136196d850 (diff)
parent8478ba7e9d12272e70931878c83127cb7290d9c6 (diff)
downloadnumpy-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.py2
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
------