summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Weckesser <warren.weckesser@gmail.com>2014-10-19 01:35:47 -0400
committerWarren Weckesser <warren.weckesser@gmail.com>2014-10-19 01:35:47 -0400
commit6114f1c963ad011d276701967864f339e8e45ae0 (patch)
tree355c17e568c202a93b2e71b12fd7f93b77b72416
parent7b3809b0061ffbb64c227d393a3771f60d1427d5 (diff)
downloadnumpy-6114f1c963ad011d276701967864f339e8e45ae0.tar.gz
MAINT: Fix typo in the 'issubclass' docstring.
-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