From 3e5a12cb388e5d9a0b8dba3d1ebf4c55bf419272 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Tue, 9 Feb 2010 08:40:23 +0000 Subject: BUG: fix typo. --- numpy/testing/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/testing/utils.py') 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) -- cgit v1.2.1