summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-05-07 19:38:09 (GMT)
committerEric Smith <eric@trueblade.com>2009-05-07 19:38:09 (GMT)
commite5fffc7279c52716fc5e3aa30790e920e4a45ca3 (patch)
tree1189f092d8fdf9ce508138c68b356c55a963b61e /Doc
parent34c044ff5b7af76c4b65c63e1923183a9957de2e (diff)
downloadcpython-e5fffc7279c52716fc5e3aa30790e920e4a45ca3.zip
cpython-e5fffc7279c52716fc5e3aa30790e920e4a45ca3.tar.gz
cpython-e5fffc7279c52716fc5e3aa30790e920e4a45ca3.tar.bz2
Merged revisions 72439 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72439 | eric.smith | 2009-05-07 15:36:09 -0400 (Thu, 07 May 2009) | 1 line Fixed wording for formatting integers: precision is not allowed. ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/string.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 959ea99..861dd1f 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -370,7 +370,7 @@ displayed after the decimal point for a floating point value formatted with
``'f'`` and ``'F'``, or before and after the decimal point for a floating point
value formatted with ``'g'`` or ``'G'``. For non-number types the field
indicates the maximum field size - in other words, how many characters will be
-used from the field content. The *precision* is ignored for integer values.
+used from the field content. The *precision* is not allowed for integer values.
Finally, the *type* determines how the data should be presented.