diff options
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r-- | Doc/library/string.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 5049dc1..6ab555a 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -348,9 +348,9 @@ following: | | positive numbers, and a minus sign on negative numbers. | +---------+----------------------------------------------------------+ -The ``'#'`` option is only valid for integers, and only for binary, -octal, or hexadecimal output. If present, it specifies that the output -will be prefixed by ``'0b'``, ``'0o'``, or ``'0x'``, respectively. +The ``'#'`` option is only valid for integers, and only for binary, 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 specified, then the field width will be determined by the content. |