]> granicus.if.org Git - python/commitdiff
bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. (#8673)
authorTerry Jan Reedy <tjreedy@udel.edu>
Mon, 6 Aug 2018 12:41:17 +0000 (08:41 -0400)
committerGitHub <noreply@github.com>
Mon, 6 Aug 2018 12:41:17 +0000 (08:41 -0400)
* bpo-34273: Change 'Fixed point' to 'Fixed-point notation'.
The change in the mini language floating point and decimal table
is consistent with 'Exponential notation' and clarifies that we
are referring to the output notation, not an object type.

* Update string.rst

* Update string.rst

* Update string.rst

* Update string.rst

Doc/library/string.rst

index 89955cfddb381a607a31e0758c3cbb26b01dcb31..0fec3df3e3c14e4c37e090bd0313857ca92eebad 100644 (file)
@@ -464,11 +464,11 @@ The available presentation types for floating point and decimal values are:
    | ``'E'`` | Exponent notation. Same as ``'e'`` except it uses an     |
    |         | upper case 'E' as the separator character.               |
    +---------+----------------------------------------------------------+
-   | ``'f'`` | Fixed point. Displays the number as a fixed-point        |
-   |         | number.  The default precision is ``6``.                 |
+   | ``'f'`` | Fixed-point notation. Displays the number as a           |
+   |         | fixed-point number.  The default precision is ``6``.     |
    +---------+----------------------------------------------------------+
-   | ``'F'`` | Fixed point. Same as ``'f'``, but converts ``nan`` to    |
-   |         | ``NAN`` and ``inf`` to ``INF``.                          |
+   | ``'F'`` | Fixed-point notation. Same as ``'f'``, but converts      |
+   |         | ``nan`` to  ``NAN`` and ``inf`` to ``INF``.              |
    +---------+----------------------------------------------------------+
    | ``'g'`` | General format.  For a given precision ``p >= 1``,       |
    |         | this rounds the number to ``p`` significant digits and   |