Docs: Fix typo in code snippet (GH-114421)

This commit is contained in:
Kirill Podoprigora 2024-01-22 18:56:30 +03:00 committed by GitHub
parent 2ef520ebec
commit 6d30cbee01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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