From: Alex Hedges Date: Mon, 1 Aug 2022 15:06:43 +0000 (-0400) Subject: no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510) X-Git-Tag: v3.12.0a1~769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d965d1995ec3efbbf666c2e7fab02217744d08e7;p=thirdparty%2FPython%2Fcpython.git no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510) --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 85bd94b4eae9..68c3d1c0a4b2 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.