[3.12] Docs: Fix typo in code snippet (GH-114421) (GH-114434)

(cherry picked from commit 6d30cbee01)

Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
This commit is contained in:
Miss Islington (bot) 2024-01-22 17:03:22 +01:00 committed by GitHub
parent 954bbcc1b9
commit d705582f73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -483,7 +483,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