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

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


https://github.com/python/cpython/commit/216cb1469f566ba5493bf53a73da9ccdac05ccfc
commit: 216cb1469f566ba5493bf53a73da9ccdac05ccfc
branch: 3.9
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:46:34-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 c1e72d1d1633b..08730c4d99351 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