diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-06 12:12:07 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-06 12:12:07 (GMT) |
commit | 07155c9c146065b0aa6726d76fb66969c7ef4d82 (patch) | |
tree | 9ec563c03767b708aff786b3b93b7a718923fc05 /Doc | |
parent | 90b8e7d2bc20a6b63042ca9ba5024ea8bb45d168 (diff) | |
download | cpython-07155c9c146065b0aa6726d76fb66969c7ef4d82.zip cpython-07155c9c146065b0aa6726d76fb66969c7ef4d82.tar.gz cpython-07155c9c146065b0aa6726d76fb66969c7ef4d82.tar.bz2 |
Fix typo in updated dis docs
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 79ec9d7..78ddf7e 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -51,7 +51,7 @@ compiled code. This is a convenience wrapper around many of the functions listed below, most notably :func:`get_instructions`, as iterating over a - :class:`ByteCode` instance yields the bytecode operations as + :class:`Bytecode` instance yields the bytecode operations as :class:`Instruction` instances. If *first_line* is not None, it indicates the line number that should |