diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-11-15 14:22:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 14:22:56 -0600 |
commit | 7ada0c13a3e0d003670f421e8533cbb5388f705c (patch) | |
tree | 42786eeae0db85f0503c4260d7758e91f45648b7 /numpy/lib | |
parent | 3952f5cabacdeb1c9aed2028be8d46320d1674ba (diff) | |
parent | dde6a64fc78bd2159ae610e59bdc99ee5211ab08 (diff) | |
download | numpy-7ada0c13a3e0d003670f421e8533cbb5388f705c.tar.gz |
Merge pull request #12399 from hershen/fix-polyint-typo
DOC: Fix typo in polyint. Fixes #12386.
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 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) |