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

(cherry picked from commit 916895f939)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2020-02-28 12:04:19 -08:00 committed by GitHub
parent f4198aee4c
commit 5157506e04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -303,9 +303,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.