diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-01-03 08:25:55 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-01-09 11:09:38 -0700 |
commit | 0402e1c6a5cc5693a1f021446f20baebe9073890 (patch) | |
tree | 843a36c6cda9dc6d786f437bd3cb5bbd51d55f84 /numpy/polynomial/laguerre.py | |
parent | a4e99a7998a30d8e777510aaa5926b436a844f2b (diff) | |
download | numpy-0402e1c6a5cc5693a1f021446f20baebe9073890.tar.gz |
DOC: Fix cut and paste error, derivative <- integral.
Diffstat (limited to 'numpy/polynomial/laguerre.py')
-rw-r--r-- | numpy/polynomial/laguerre.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/laguerre.py b/numpy/polynomial/laguerre.py index 2c664efad..abf31b07b 100644 --- a/numpy/polynomial/laguerre.py +++ b/numpy/polynomial/laguerre.py @@ -751,7 +751,7 @@ def lagint(c, m=1, k=[], lbnd=0, scl=1, axis=0): Following each integration the result is *multiplied* by `scl` before the integration constant is added. (Default: 1) axis : int, optional - Axis over which the derivative is taken. (Default: 0). + Axis over which the integral is taken. (Default: 0). .. versionadded:: 1.7.0 |