]> granicus.if.org Git - python/commitdiff
bpo-31487: Update F-strings doc example (GH-3627)
authorMariatta <Mariatta@users.noreply.github.com>
Sun, 17 Sep 2017 14:43:31 +0000 (07:43 -0700)
committerGitHub <noreply@github.com>
Sun, 17 Sep 2017 14:43:31 +0000 (07:43 -0700)
Shorten the comment to: "using integer format specifier"

Doc/reference/lexical_analysis.rst

index baf1f09dff2a2cec44dade349c8695501cdf72a2..684119a443954c33da22a374ef9d1d754e1e3951 100644 (file)
@@ -680,7 +680,7 @@ Some examples of formatted string literals::
    >>> f"{today:%b %d, %Y}"  # using date format specifier
    'January 27, 2017'
    >>> number = 1024
-   >>> f"{number:#0x}"  # using integer presentation type as format specifier
+   >>> f"{number:#0x}"  # using integer format specifier
    '0x400'
 
 A consequence of sharing the same syntax as regular string literals is