diff options
author | rimchoi <hyerimc858@gmail.com> | 2024-11-02 05:08:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-02 05:08:27 (GMT) |
commit | 914356f4d485e378eb692e57d822b893acc0c0da (patch) | |
tree | e831ab770a761f6d561edea9639474981ec11216 /Doc | |
parent | f0c6fccd08904787a39269367f09f263d496114c (diff) | |
download | cpython-914356f4d485e378eb692e57d822b893acc0c0da.zip cpython-914356f4d485e378eb692e57d822b893acc0c0da.tar.gz cpython-914356f4d485e378eb692e57d822b893acc0c0da.tar.bz2 |
gh-125875: Fix docs typo FORMAT_SPEC to FORMAT_WITH_SPEC (gh-126319)
Fix docs typo FORMAT_SPEC to FORMAT_WITH_SPEC
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 6c12d1b..cf203a7 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1647,7 +1647,7 @@ iterations of the loop. .. versionadded:: 3.13 -.. opcode:: FORMAT_SPEC +.. opcode:: FORMAT_WITH_SPEC Formats the given value with the given format spec:: |