summaryrefslogtreecommitdiff
path: root/numpy/polynomial
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-05-09 12:16:14 +0300
committerVille Skyttä <ville.skytta@iki.fi>2017-05-09 12:16:14 +0300
commitef5684564e3074daf614846f30bfdd7f15f5254f (patch)
tree1b604adcf75bec0009c27d340e6ede2adb03b2ec /numpy/polynomial
parent23b0cf3a5925dbc1f0503fbdacdf8088372f4ab5 (diff)
downloadpython-numpy-ef5684564e3074daf614846f30bfdd7f15f5254f.tar.gz
python-numpy-ef5684564e3074daf614846f30bfdd7f15f5254f.tar.bz2
python-numpy-ef5684564e3074daf614846f30bfdd7f15f5254f.zip
ENH: Spelling fixes
Diffstat (limited to 'numpy/polynomial')
-rw-r--r--numpy/polynomial/legendre.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/legendre.py b/numpy/polynomial/legendre.py
index fa578360e..be8410b82 100644
--- a/numpy/polynomial/legendre.py
+++ b/numpy/polynomial/legendre.py
@@ -619,7 +619,7 @@ def legpow(c, pow, maxpower=16):
"""Raise a Legendre series to a power.
Returns the Legendre series `c` raised to the power `pow`. The
- arguement `c` is a sequence of coefficients ordered from low to high.
+ argument `c` is a sequence of coefficients ordered from low to high.
i.e., [1,2,3] is the series ``P_0 + 2*P_1 + 3*P_2.``
Parameters