diff options
author | Mark Summerfield <list@qtrac.plus.com> | 2008-07-18 09:22:49 (GMT) |
---|---|---|
committer | Mark Summerfield <list@qtrac.plus.com> | 2008-07-18 09:22:49 (GMT) |
commit | 72cdd747870c7e39698bb20cf10ce64062f40939 (patch) | |
tree | 0cb84785d2782b9da703d591ac523ffd68245921 /Doc | |
parent | 0afe90581874b4c9a8b33c010d3386104a36f7cb (diff) | |
download | cpython-72cdd747870c7e39698bb20cf10ce64062f40939.zip cpython-72cdd747870c7e39698bb20cf10ce64062f40939.tar.gz cpython-72cdd747870c7e39698bb20cf10ce64062f40939.tar.bz2 |
fixed tiny typo in new # format doc
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 07a2c4b..faf5fed 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -349,7 +349,7 @@ following: +---------+----------------------------------------------------------+ The ``'#'`` option is only valid for integers, and only for binary, -octal, or decimal output. If present, it specifies that the output +octal, or hexadecimal output. If present, it specifies that the output will be prefixed by ``'0b'``, ``'0o'``, or ``'0x'``, respectively. *width* is a decimal integer defining the minimum field width. If not |