summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-05-05 17:19:46 (GMT)
committerEric Smith <eric@trueblade.com>2009-05-05 17:19:46 (GMT)
commit3bef15be2d997124efc8cafca0e17aaf07a386dc (patch)
treedc2e4c12ec27e9b373b0f4b3ea25f31cbd9cbfd3 /Doc
parent4adbc34aaf29cef494ab8a92acfa63546f5d2a19 (diff)
downloadcpython-3bef15be2d997124efc8cafca0e17aaf07a386dc.zip
cpython-3bef15be2d997124efc8cafca0e17aaf07a386dc.tar.gz
cpython-3bef15be2d997124efc8cafca0e17aaf07a386dc.tar.bz2
Improved wording.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/string.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 0eb1b57..d104931 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -434,10 +434,10 @@ The available presentation types for floating point and decimal values are:
| ``'%'`` | Percentage. Multiplies the number by 100 and displays |
| | in fixed (``'f'``) format, followed by a percent sign. |
+---------+----------------------------------------------------------+
- | None | Similar to ``'g'``, except with at least one decimal |
- | | point and a default precision of 12. This is intended to |
- | | match :func:`str`, except you can add the other |
- | | format modifiers. |
+ | None | Similar to ``'g'``, except with at least one digit past |
+ | | the decimal point and a default precision of 12. This is |
+ | | intended to match :func:`str`, except you can add the |
+ | | other format modifiers. |
+---------+----------------------------------------------------------+