Skip to content

Commit

Permalink
BUG: fix typo.
Browse files Browse the repository at this point in the history
(cherry picked from commit 74c0b63599641f2967075203280042876fb062fb)
  • Loading branch information
cournape committed Feb 9, 2010
1 parent d9ae826 commit 31397bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 31397bd

Please sign in to comment.