diff options
author | David Cournapeau <cournape@gmail.com> | 2010-02-09 08:40:23 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2010-02-09 08:40:23 +0000 |
commit | 3e5a12cb388e5d9a0b8dba3d1ebf4c55bf419272 (patch) | |
tree | 00509822e1810e63793848f8135a68c8abb280fd /numpy/testing/utils.py | |
parent | 9ad03afec07ebc43e1a5315d323f219fa8738d71 (diff) | |
download | numpy-3e5a12cb388e5d9a0b8dba3d1ebf4c55bf419272.tar.gz |
BUG: fix typo.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index abb2956a1..012313618 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -1152,7 +1152,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) |