summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/numerictypes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numerictypes.py b/numpy/core/numerictypes.py
index 1545bc734..0c03cce89 100644
--- a/numpy/core/numerictypes.py
+++ b/numpy/core/numerictypes.py
@@ -670,7 +670,7 @@ def issubclass_(arg1, arg2):
Determine if a class is a subclass of a second class.
`issubclass_` is equivalent to the Python built-in ``issubclass``,
- except that it returns False instead of raising a TypeError is one
+ except that it returns False instead of raising a TypeError if one
of the arguments is not a class.
Parameters