summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-05-25 23:49:53 +0100
committerGitHub <noreply@github.com>2021-05-25 23:49:53 +0100
commitd7a1004058e7baac86f732699cbed975b0a16613 (patch)
treee4e05bdf695521cad3a19032fce419d05791ede3 /doc/source/reference
parentecdba3a140126174a6a4d86fe0fbf2ce2ad680f9 (diff)
downloadnumpy-d7a1004058e7baac86f732699cbed975b0a16613.tar.gz
Updated doc/source/reference/arrays.scalars.rst
Fixed unsigned integer aliases.
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/arrays.scalars.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/reference/arrays.scalars.rst b/doc/source/reference/arrays.scalars.rst
index 6c9bcb504..abef66692 100644
--- a/doc/source/reference/arrays.scalars.rst
+++ b/doc/source/reference/arrays.scalars.rst
@@ -352,8 +352,8 @@ are also provided.
uint32
uint64
- Alias for the unsigned integer types (one of `numpy.byte`, `numpy.short`,
- `numpy.intc`, `numpy.int_` and `numpy.longlong`) with the specified number
+ Alias for the unsigned integer types (one of `numpy.ubyte`, `numpy.ushort`,
+ `numpy.uintc`, `numpy.uint` and `numpy.ulonglong`) with the specified number
of bits.
Compatible with the C99 ``uint8_t``, ``uint16_t``, ``uint32_t``, and
@@ -371,8 +371,8 @@ are also provided.
.. attribute:: uintp
- Alias for the unsigned integer type (one of `numpy.byte`, `numpy.short`,
- `numpy.intc`, `numpy.int_` and `np.longlong`) that is the same size as a
+ Alias for the unsigned integer type (one of `numpy.ubyte`, `numpy.ushort`,
+ `numpy.uintc`, `numpy.uint` and `np.ulonglong`) that is the same size as a
pointer.
Compatible with the C ``uintptr_t``.