diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-02-20 04:31:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 04:31:18 (GMT) |
commit | 9a12c213c6f26876c9e00a8cebef3bc9030b6b99 (patch) | |
tree | 931c075b68b55878d426e5533d98934d7651b45b /Doc | |
parent | a072788c57f7a40ecc53cb32f795f4ec844c0aba (diff) | |
download | cpython-9a12c213c6f26876c9e00a8cebef3bc9030b6b99.zip cpython-9a12c213c6f26876c9e00a8cebef3bc9030b6b99.tar.gz cpython-9a12c213c6f26876c9e00a8cebef3bc9030b6b99.tar.bz2 |
Fix typo in dis module doc (GH-24509)
(cherry picked from commit 292f23186c6573bc1c3fa4f6e91116e8ee444cf4)
Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
Diffstat (limited to 'Doc')
-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 015be20..f282415 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 |