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

File tree

2 files changed

lines changed

2 files changed

lines changed

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