diff options
author | Julien Palard <julien@palard.fr> | 2019-07-08 21:08:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 21:08:07 (GMT) |
commit | 66b4150f6f001640521ae6c9571cd4325cd67394 (patch) | |
tree | a635a49680f64294cfeb3e53c8a890b44d320e65 /Doc | |
parent | 2da622ff77a763327895656779370b80a833d95c (diff) | |
download | cpython-66b4150f6f001640521ae6c9571cd4325cd67394.zip cpython-66b4150f6f001640521ae6c9571cd4325cd67394.tar.gz cpython-66b4150f6f001640521ae6c9571cd4325cd67394.tar.bz2 |
Doc: Fix example title. (GH-14639)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8575f8a..9dd557f 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3815,7 +3815,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) |