summaryrefslogtreecommitdiffstats
path: root/Objects/stringlib/formatter.h
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-06-24 06:07:03 (GMT)
committerEric Smith <eric@trueblade.com>2008-06-24 06:07:03 (GMT)
commit6ed16dcf56f47f935ceb6e6493b0d53846163dea (patch)
tree85240cf328e1de1d0b48cbf52b80ddb5558ffab2 /Objects/stringlib/formatter.h
parent6d7e7a730e05dbf3511f94df400984dd5b7bdfdc (diff)
downloadcpython-6ed16dcf56f47f935ceb6e6493b0d53846163dea.zip
cpython-6ed16dcf56f47f935ceb6e6493b0d53846163dea.tar.gz
cpython-6ed16dcf56f47f935ceb6e6493b0d53846163dea.tar.bz2
Merged revisions 64496 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64496 | eric.smith | 2008-06-24 02:05:30 -0400 (Tue, 24 Jun 2008) | 1 line Typo in comment. ........
Diffstat (limited to 'Objects/stringlib/formatter.h')
-rw-r--r--Objects/stringlib/formatter.h2
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. */