summaryrefslogtreecommitdiff
path: root/numpy/polynomial/tests/test_polynomial.py
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-02-19 00:22:33 -0800
committerDongjoon Hyun <dongjoon@apache.org>2016-02-19 00:28:09 -0800
commit707772433ca82df688ca8c7db8dfc5531a517edc (patch)
tree08130a989f2ed3dbf709543c84d4c09539a325ed /numpy/polynomial/tests/test_polynomial.py
parent711b2a9ccfb54c09cdc483ee511035bda60f3f0b (diff)
downloadnumpy-707772433ca82df688ca8c7db8dfc5531a517edc.tar.gz
MAINT: Fix typos in docs/comment of `ma` and `polynomial` modules.
Diffstat (limited to 'numpy/polynomial/tests/test_polynomial.py')
-rw-r--r--numpy/polynomial/tests/test_polynomial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/polynomial/tests/test_polynomial.py b/numpy/polynomial/tests/test_polynomial.py
index 00a52ebce..0e6a2e8a0 100644
--- a/numpy/polynomial/tests/test_polynomial.py
+++ b/numpy/polynomial/tests/test_polynomial.py
@@ -300,7 +300,7 @@ class TestDerivative(TestCase):
assert_raises(ValueError, poly.polyder, [0], .5)
assert_raises(ValueError, poly.polyder, [0], -1)
- # check that zeroth deriviative does nothing
+ # check that zeroth derivative does nothing
for i in range(5):
tgt = [0]*i + [1]
res = poly.polyder(tgt, m=0)