[3.12] fix typo in dis.rst (GH-121612) (#123096)

fix typo in dis.rst (GH-121612)
(cherry picked from commit e9287ea426)

Co-authored-by: mathysEthical <110499907+mathysEthical@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2024-08-17 11:03:04 +02:00 committed by GitHub
parent 28f37700bc
commit b9667e8243
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1462,7 +1462,7 @@ iterations of the loop.
end = STACK.pop() end = STACK.pop()
start = STACK.pop() start = STACK.pop()
STACK.append(slice(start, stop)) STACK.append(slice(start, end))
if it is 3, implements:: if it is 3, implements::