From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 8 Jul 2019 21:18:15 +0000 (-0700) Subject: Doc: Fix example title. (GH-14639) X-Git-Tag: v3.7.5rc1~261 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b1135fc602859119ce2e649b070c0d8d9dce7ca;p=thirdparty%2FPython%2Fcpython.git Doc: Fix example title. (GH-14639) (cherry picked from commit 66b4150f6f001640521ae6c9571cd4325cd67394) Co-authored-by: Julien Palard --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 3b74331e51f2..d35c171aba39 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3733,7 +3733,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)