diff options
author | Andrew Nelson <andyfaff@gmail.com> | 2015-06-10 12:01:07 +1000 |
---|---|---|
committer | Andrew Nelson <andyfaff@gmail.com> | 2015-06-10 12:01:07 +1000 |
commit | 9c53d0454a124175696c4fa3d77d8ac65ac2fb25 (patch) | |
tree | eec3afaeda0f08cd3095b3e9a65dfa73435f147f /numpy/polynomial/_polybase.py | |
parent | 7d867925e6aa634136e85511cfe7ddbe41c88f74 (diff) | |
download | numpy-9c53d0454a124175696c4fa3d77d8ac65ac2fb25.tar.gz |
DOC: Polynomial.deriv refers to integrations, not differentiations
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r-- | numpy/polynomial/_polybase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py index 234b509aa..41bdf0484 100644 --- a/numpy/polynomial/_polybase.py +++ b/numpy/polynomial/_polybase.py @@ -661,7 +661,7 @@ class ABCPolyBase(object): Parameters ---------- m : non-negative int - The number of integrations to perform. + Find the derivative of order `m`. Returns ------- |