diff options
author | Georg Brandl <georg@python.org> | 2007-09-04 07:27:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-04 07:27:54 (GMT) |
commit | 7a8e58249c0bc798aae5c662a5d752db736cb1ea (patch) | |
tree | 9c553ad43d84d02ae87211f33f9b49d1c23e8466 /Doc | |
parent | a1e9ef7a621520aa5574fe856a8ad40a69318ce2 (diff) | |
download | cpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.zip cpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.tar.gz cpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.tar.bz2 |
Fix the string formatting docs for now; if the feature is changed again, the docs can be changed too.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index b0061b7..41b8a49 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -416,8 +416,7 @@ 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 that it prints at least one | - | | digit after the decimal point. | + | None | the same as ``'g'`` | +---------+----------------------------------------------------------+ |