diff options
author | Alex Hedges <aphedges@users.noreply.github.com> | 2022-08-01 15:06:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 15:06:43 (GMT) |
commit | d965d1995ec3efbbf666c2e7fab02217744d08e7 (patch) | |
tree | d6f49d104bd0d285082263039efe14f860cfb6d7 /Doc/library/dis.rst | |
parent | de388c0a7b71c094d36ce40fecef87bdbb8a87d3 (diff) | |
download | cpython-d965d1995ec3efbbf666c2e7fab02217744d08e7.zip cpython-d965d1995ec3efbbf666c2e7fab02217744d08e7.tar.gz cpython-d965d1995ec3efbbf666c2e7fab02217744d08e7.tar.bz2 |
no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510)
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 85bd94b..68c3d1c 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -449,7 +449,7 @@ result back on the stack. **Binary and in-place operations** In the following, TOS is the top-of-stack. -TOS1, TOS2, TOS3 are the second, thrid and fourth items on the stack, respectively. +TOS1, TOS2, TOS3 are the second, third and fourth items on the stack, respectively. Binary operations remove the top two items from the stack (TOS and TOS1). They perform the operation, then put the result back on the stack. |