diff options
author | Hansraj Das <raj.das.136@gmail.com> | 2019-10-25 16:44:02 (GMT) |
---|---|---|
committer | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-25 16:44:02 (GMT) |
commit | 7320ec05f72fc27b25789fe76f8297644e7e7e0a (patch) | |
tree | 134e90b5281bdd77700b53cba1c23faf9f672fd7 /Python/formatter_unicode.c | |
parent | 96b06aefe23521b61e4e9cdd44f5d30b00c7eb95 (diff) | |
download | cpython-7320ec05f72fc27b25789fe76f8297644e7e7e0a.zip cpython-7320ec05f72fc27b25789fe76f8297644e7e7e0a.tar.gz cpython-7320ec05f72fc27b25789fe76f8297644e7e7e0a.tar.bz2 |
Fix typo in formatter_unicode (GH-16831)
numbers's -> number's
Diffstat (limited to 'Python/formatter_unicode.c')
-rw-r--r-- | Python/formatter_unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 3e9e9ba..7c4ecf0 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -590,7 +590,7 @@ calc_number_widths(NumberFieldWidths *spec, Py_ssize_t n_prefix, spec->n_remainder + spec->n_rpadding; } -/* Fill in the digit parts of a numbers's string representation, +/* Fill in the digit parts of a number's string representation, as determined in calc_number_widths(). Return -1 on error, or 0 on success. */ static int |