From: Kirill Podoprigora Date: Mon, 22 Jan 2024 15:56:30 +0000 (+0300) Subject: Docs: Fix typo in code snippet (GH-114421) X-Git-Tag: v3.13.0a4~383 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d30cbee013b4182937ffa11a7c87d2a7b6b7b41;p=thirdparty%2FPython%2Fcpython.git Docs: Fix typo in code snippet (GH-114421) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 7492ae85c4ea..b97d48fafab3 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -576,7 +576,7 @@ operations on it as if it was a Python list. The top of the stack corresponds to Swap the top of the stack with the i-th element:: - STACK[-i], STACK[-1] = stack[-1], STACK[-i] + STACK[-i], STACK[-1] = STACK[-1], STACK[-i] .. versionadded:: 3.11