From: Julien Palard Date: Mon, 8 Jul 2019 21:08:07 +0000 (+0200) Subject: Doc: Fix example title. (GH-14639) X-Git-Tag: v3.9.0a1~1070 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66b4150f6f001640521ae6c9571cd4325cd67394;p=thirdparty%2FPython%2Fcpython.git Doc: Fix example title. (GH-14639) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8575f8a72af3..9dd557fabaae 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)