From 66b4150f6f001640521ae6c9571cd4325cd67394 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Mon, 8 Jul 2019 23:08:07 +0200 Subject: [PATCH] Doc: Fix example title. (GH-14639) --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8575f8a72af..9dd557fabaa 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)