[Python-checkins] r66394 - python/trunk/Doc/library/string.rst

benjamin.peterson python-checkins at python.org
Fri Sep 12 00:04:06 CEST 2008


Author: benjamin.peterson
Date: Fri Sep 12 00:04:02 2008
New Revision: 66394

Log:
fix typo

Modified:
   python/trunk/Doc/library/string.rst

Modified: python/trunk/Doc/library/string.rst
==============================================================================
--- python/trunk/Doc/library/string.rst	(original)
+++ python/trunk/Doc/library/string.rst	Fri Sep 12 00:04:02 2008
@@ -375,9 +375,9 @@
    |         | 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.


More information about the Python-checkins mailing list