[Python-checkins] no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510)

corona10 webhook-mailer at python.org
Mon Aug 1 11:06:48 EDT 2022


https://github.com/python/cpython/commit/d965d1995ec3efbbf666c2e7fab02217744d08e7
commit: d965d1995ec3efbbf666c2e7fab02217744d08e7
branch: main
author: Alex Hedges <aphedges at users.noreply.github.com>
committer: corona10 <donghee.na92 at gmail.com>
date: 2022-08-02T00:06:43+09:00
summary:

no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510)

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 85bd94b4eae94..68c3d1c0a4b24 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.



More information about the Python-checkins mailing list