bpo-13790: Change 'string' to 'specification' in format doc (GH-18690) · python/cpython@5157506 (original) (raw)

File tree

2 files changed

lines changed

2 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -303,9 +303,9 @@ specification is to be interpreted.
303 303 Most built-in types implement the following options for format specifications,
304 304 although some of the formatting options are only supported by the numeric types.
305 305
306 -A general convention is that an empty format string (``""``) produces
306 +A general convention is that an empty format specification produces
307 307 the same result as if you had called :func:`str` on the value. A
308 -non-empty format string typically modifies the result.
308 +non-empty format specification typically modifies the result.
309 309
310 310 The general form of a *standard format specifier* is:
311 311
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1 +Change 'string' to 'specification' in format doc.