summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2022-03-16 20:50:40 -0600
committerGitHub <noreply@github.com>2022-03-16 20:50:40 -0600
commita8f9711493adee93fa3d61e7ef1bee11d7055a85 (patch)
treedf767d0cf252f6327f67ce3e3b7e2cd2a4bac0e9
parente4509e744587b80a98a4bca0205da9bbd3fe4bf3 (diff)
parentdc029dfc691129b654ac2762144aae34c9d11a50 (diff)
downloadnumpy-a8f9711493adee93fa3d61e7ef1bee11d7055a85.tar.gz
Merge pull request #21202 from Nimrod0901/patch-1
DOC: fix outdated description of unicode
-rw-r--r--doc/source/reference/arrays.interface.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.interface.rst b/doc/source/reference/arrays.interface.rst
index 33dd16c4e..e10710719 100644
--- a/doc/source/reference/arrays.interface.rst
+++ b/doc/source/reference/arrays.interface.rst
@@ -91,7 +91,7 @@ This approach to the interface consists of the object having an
``M`` Datetime
``O`` Object (i.e. the memory contains a pointer to :c:type:`PyObject`)
``S`` String (fixed-length sequence of char)
- ``U`` Unicode (fixed-length sequence of :c:type:`Py_UNICODE`)
+ ``U`` Unicode (fixed-length sequence of :c:type:`Py_UCS4`)
``V`` Other (void \* -- each item is a fixed-size chunk of memory)
===== ================================================================