diff options
author | Alon Hershenhorn <hershen@gmail.com> | 2018-11-15 10:19:55 -0800 |
---|---|---|
committer | Alon Hershenhorn <hershen@gmail.com> | 2018-11-15 10:53:57 -0800 |
commit | dde6a64fc78bd2159ae610e59bdc99ee5211ab08 (patch) | |
tree | c7140faa4789610eb987ecd75cf166aeb4025394 /numpy/lib/polynomial.py | |
parent | ff8b0b21e0f17dbcc94fc87ba1194dcbbbe15432 (diff) | |
download | numpy-dde6a64fc78bd2159ae610e59bdc99ee5211ab08.tar.gz |
DOC: Fix typo in polyint.
Change differentiate to integrate in parameter `p` description.
Fixes #12386.
Diffstat (limited to 'numpy/lib/polynomial.py')
-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 7cbe80b46..81af185eb 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -272,7 +272,7 @@ def polyint(p, m=1, k=None): Parameters ---------- p : array_like or poly1d - Polynomial to differentiate. + Polynomial to integrate. A sequence is interpreted as polynomial coefficients, see `poly1d`. m : int, optional Order of the antiderivative. (Default: 1) |