summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2021-05-26 08:29:39 +0300
committerGitHub <noreply@github.com>2021-05-26 08:29:39 +0300
commit12c6000601c7665e52502ab4a67a54d290498266 (patch)
treef7a7fb394d54d125f2486dd003301427a4649532
parent23cea5293f94478817c98aa820d771b54a416b80 (diff)
parentd7a1004058e7baac86f732699cbed975b0a16613 (diff)
downloadnumpy-12c6000601c7665e52502ab4a67a54d290498266.tar.gz
Merge pull request #19099 from pope1ni/patch-1
DOC: fixed unsigned integer alias links.
-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``.