diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2021-02-20 04:22:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 04:22:37 (GMT) |
commit | 292f23186c6573bc1c3fa4f6e91116e8ee444cf4 (patch) | |
tree | 9e1cf96d0eec67461a3c429c45509c6014d5307a /Doc/library | |
parent | b30fcba3a8abaabd1087f2392ae8aec4c1b1f210 (diff) | |
download | cpython-292f23186c6573bc1c3fa4f6e91116e8ee444cf4.zip cpython-292f23186c6573bc1c3fa4f6e91116e8ee444cf4.tar.gz cpython-292f23186c6573bc1c3fa4f6e91116e8ee444cf4.tar.bz2 |
Fix typo in dis module doc (GH-24509)
Diffstat (limited to 'Doc/library')
-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 f3b2538..dad8369 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 |