summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-11 22:04:02 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-11 22:04:02 (GMT)
commitb535d32952488762689a4ca83b5ea93cce65c15b (patch)
treea3de33c0b09709423326972fb1537aa4f6f5cfc1
parent24cb382455a0701b33926c134803a39f13e29bd1 (diff)
downloadcpython-b535d32952488762689a4ca83b5ea93cce65c15b.zip
cpython-b535d32952488762689a4ca83b5ea93cce65c15b.tar.gz
cpython-b535d32952488762689a4ca83b5ea93cce65c15b.tar.bz2
fix typo
-rw-r--r--Doc/library/string.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 357cba3..c960803 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -375,9 +375,9 @@ following:
| | positive numbers, and a minus sign on negative numbers. |
+---------+----------------------------------------------------------+
-The ``'#'`` option is only valid for integers, and only for binary,
-octal, or decimal 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.