summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2010-02-09 08:59:35 +0000
committerDavid Cournapeau <cournape@gmail.com>2010-02-09 08:59:35 +0000
commit31397bdc0d22bafc803c66d98025e9ece8091412 (patch)
tree3d6ba3bbbb3bb30c14ad67d30c6f5123ef87277c
parentd9ae8260babe9738047adf2d1edda37d69bd5548 (diff)
downloadnumpy-31397bdc0d22bafc803c66d98025e9ece8091412.tar.gz
BUG: fix typo.
(cherry picked from commit 74c0b63599641f2967075203280042876fb062fb)
-rw-r--r--numpy/testing/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py
index 7c8e978e2..c10754aa1 100644
--- a/numpy/testing/utils.py
+++ b/numpy/testing/utils.py
@@ -1156,7 +1156,7 @@ def nulp_diff(x, y, dtype=None):
t = np.common_type(x, y)
if np.iscomplexobj(x) or np.iscomplexobj(y):
- raise NotImplementerError("_nulp not implemented for complex array")
+ raise NotImplementedError("_nulp not implemented for complex array")
x = np.array(x, dtype=t)
y = np.array(y, dtype=t)