Skip to content

[3.8] bpo-13790: Change 'string' to 'specification' in format doc (GH-18690) #18693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/string.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change 'string' to 'specification' in format doc.