diff options
author | Takanori H <takanori17h@gmail.com> | 2020-07-31 14:49:31 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 08:49:31 +0300 |
commit | 27cf59da9178abd9b062da15c237dda43c553fde (patch) | |
tree | 080766c21d853622a562fdad33653d47c68619a1 /doc/source/reference/c-api | |
parent | d67326db34d6268b0deeb61f71a57062ab0d7c4d (diff) | |
download | numpy-27cf59da9178abd9b062da15c237dda43c553fde.tar.gz |
DOC: Fix the declarations of C fuctions (#16897)
* DOC: Fix the declarations of C fuctions
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/array.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/c-api/array.rst b/doc/source/reference/c-api/array.rst index 10c1704c2..3f8734c25 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -1142,8 +1142,8 @@ Converting data types storing the max value of the input types converted to a string or unicode. .. c:function:: PyArray_Descr* PyArray_ResultType( \ - npy_intp narrs, PyArrayObject**arrs, npy_intp ndtypes, \ - PyArray_Descr**dtypes) + npy_intp narrs, PyArrayObject **arrs, npy_intp ndtypes, \ + PyArray_Descr **dtypes) .. versionadded:: 1.6 |