summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorJaime <jaime.frio@gmail.com>2014-10-18 22:55:21 -0700
committerJaime <jaime.frio@gmail.com>2014-10-18 22:55:21 -0700
commitdf9db6ed5f9c9e315993f4efed5dba613e6cd84c (patch)
tree355c17e568c202a93b2e71b12fd7f93b77b72416 /numpy/core
parent7b3809b0061ffbb64c227d393a3771f60d1427d5 (diff)
parent6114f1c963ad011d276701967864f339e8e45ae0 (diff)
downloadnumpy-df9db6ed5f9c9e315993f4efed5dba613e6cd84c.tar.gz
Merge pull request #5206 from WarrenWeckesser/typo
MAINT: Fix typo in the 'issubclass' docstring.
Diffstat (limited to 'numpy/core')
-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