diff options
author | seberg <sebastian@sipsolutions.net> | 2014-02-17 10:58:59 +0100 |
---|---|---|
committer | seberg <sebastian@sipsolutions.net> | 2014-02-17 10:58:59 +0100 |
commit | 297f54b28e09666ef6a514498c6949aacd4494d5 (patch) | |
tree | 58290629c2bde3a95efe0dde9939ca16cd0a56f5 /doc/source/reference/c-api.array.rst | |
parent | 25ac48f98e5a12d653963a2da4607ba5cac3bffa (diff) | |
parent | a5000520ff4dcdb15b817d9d85464cdf2b943674 (diff) | |
download | numpy-297f54b28e09666ef6a514498c6949aacd4494d5.tar.gz |
Merge pull request #4303 from charris/fix-gh-588
DOC: Typo, replace PyArrayDescr_Check by PyArray_DescrCheck.
Diffstat (limited to 'doc/source/reference/c-api.array.rst')
-rw-r--r-- | doc/source/reference/c-api.array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index 323ca0655..fcc4e6915 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -2583,7 +2583,7 @@ Data-type descriptors unless otherwise noted. Therefore, you must own a reference to any data-type object used as input to such a function. -.. cfunction:: int PyArrayDescr_Check(PyObject* obj) +.. cfunction:: int PyArray_DescrCheck(PyObject* obj) Evaluates as true if *obj* is a data-type object ( :ctype:`PyArray_Descr *` ). |