[Python-checkins] Fix typo in dis module doc (GH-24509)

miss-islington webhook-mailer at python.org
Fri Feb 19 23:31:25 EST 2021


https://github.com/python/cpython/commit/9a12c213c6f26876c9e00a8cebef3bc9030b6b99
commit: 9a12c213c6f26876c9e00a8cebef3bc9030b6b99
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-02-19T20:31:18-08:00
summary:

Fix typo in dis module doc (GH-24509)

(cherry picked from commit 292f23186c6573bc1c3fa4f6e91116e8ee444cf4)

Co-authored-by: Irit Katriel <iritkatriel at yahoo.com>

files:
M Doc/library/dis.rst

diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 015be2029502a..f282415cc33d4 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -346,7 +346,7 @@ The Python compiler currently generates the following bytecode instructions.
 
 .. opcode:: ROT_FOUR
 
-   Lifts second, third and forth stack items one position up, moves top down
+   Lifts second, third and fourth stack items one position up, moves top down
    to position four.
 
    .. versionadded:: 3.8



More information about the Python-checkins mailing list