summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-07-08 21:17:32 (GMT)
committerGitHub <noreply@github.com>2019-07-08 21:17:32 (GMT)
commit54348f46f8c8c023b7e78f9cebe8e54818227b92 (patch)
treedf69913a3b31111168b99a2749f2fdb5144b9397
parent975d4d3651c5fe9422801d8f7145486b23d46a13 (diff)
downloadcpython-54348f46f8c8c023b7e78f9cebe8e54818227b92.zip
cpython-54348f46f8c8c023b7e78f9cebe8e54818227b92.tar.gz
cpython-54348f46f8c8c023b7e78f9cebe8e54818227b92.tar.bz2
Doc: Fix example title. (GH-14639)
(cherry picked from commit 66b4150f6f001640521ae6c9571cd4325cd67394) Co-authored-by: Julien Palard <julien@palard.fr>
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 35a17a1..9651676 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -3801,7 +3801,7 @@ copying.
>>> z.nbytes
48
- Cast 1D/unsigned char to 2D/unsigned long::
+ Cast 1D/unsigned long to 2D/unsigned long::
>>> buf = struct.pack("L"*6, *list(range(6)))
>>> x = memoryview(buf)