From 6d30cbee013b4182937ffa11a7c87d2a7b6b7b41 Mon Sep 17 00:00:00 2001 From: Kirill Podoprigora Date: Mon, 22 Jan 2024 18:56:30 +0300 Subject: Docs: Fix typo in code snippet (GH-114421) --- Doc/library/dis.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 7492ae8..b97d48f 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 -- cgit v0.12