bpo-13790: Change 'string' to 'specification' in format doc (GH-18690)

This commit is contained in:
Terry Jan Reedy 2020-02-28 14:59:16 -05:00 committed by GitHub
parent c705fd1e89
commit 916895f939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -302,9 +302,9 @@ specification is to be interpreted.
Most built-in types implement the following options for format specifications,
although some of the formatting options are only supported by the numeric types.
A general convention is that an empty format string (``""``) produces
A general convention is that an empty format specification produces
the same result as if you had called :func:`str` on the value. A
non-empty format string typically modifies the result.
non-empty format specification typically modifies the result.
The general form of a *standard format specifier* is:

View File

@ -0,0 +1 @@
Change 'string' to 'specification' in format doc.