diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-10-24 15:27:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 15:27:19 +0300 |
commit | beac56601587e26563d83b0a47cd0b1f006bf5d6 (patch) | |
tree | 881066e67e4837a3040704ea21bff24e0c01c62e /doc/source/reference/arrays.interface.rst | |
parent | c0043831c46ec07fdc34999d664af654ada0825f (diff) | |
parent | becc3bc83421677530abfe54c4757ed6adcc822b (diff) | |
download | numpy-beac56601587e26563d83b0a47cd0b1f006bf5d6.tar.gz |
Merge pull request #17619 from takanori-pskq/i13114-fix-misc
DOC: Fix some references
Diffstat (limited to 'doc/source/reference/arrays.interface.rst')
-rw-r--r-- | doc/source/reference/arrays.interface.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.interface.rst b/doc/source/reference/arrays.interface.rst index aee95ba5b..d0a1c06c4 100644 --- a/doc/source/reference/arrays.interface.rst +++ b/doc/source/reference/arrays.interface.rst @@ -63,7 +63,7 @@ This approach to the interface consists of the object having an Tuple whose elements are the array size in each dimension. Each entry is an integer (a Python :py:class:`int`). Note that these integers could be larger than the platform ``int`` or ``long`` - could hold (a Python :py:class`int` is a C ``long``). It is up to the code + could hold (a Python :py:class:`int` is a C ``long``). It is up to the code using this attribute to handle this appropriately; either by raising an error when overflow is possible, or by using ``long long`` as the C type for the shapes. |