diff options
author | Eric Smith <eric@trueblade.com> | 2008-06-24 06:05:30 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-06-24 06:05:30 (GMT) |
commit | 9ea1e36957bb5f890c56f0ffedfacd766699a436 (patch) | |
tree | 828303645ec711f5538b7962f4e795b207847651 /Objects/stringlib | |
parent | 2b917c93bcd50274797a8a1cfd9b3c90b75710d7 (diff) | |
download | cpython-9ea1e36957bb5f890c56f0ffedfacd766699a436.zip cpython-9ea1e36957bb5f890c56f0ffedfacd766699a436.tar.gz cpython-9ea1e36957bb5f890c56f0ffedfacd766699a436.tar.bz2 |
Typo in comment.
Diffstat (limited to 'Objects/stringlib')
-rw-r--r-- | Objects/stringlib/formatter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 12e2931..f8f265c 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h @@ -586,7 +586,7 @@ format_int_or_long_internal(PyObject *value, const InternalFormatSpec *format, } /* Insert the grouping, if any, after the uppercasing of 'X', so we can - ensure that grouping chars won't be affeted. */ + ensure that grouping chars won't be affected. */ if (n_grouping_chars && format->type == 'n') { /* We know this can't fail, since we've already reserved enough space. */ |