[Python-checkins] r64496 - python/trunk/Objects/stringlib/formatter.h

eric.smith python-checkins at python.org
Tue Jun 24 08:05:30 CEST 2008


Author: eric.smith
Date: Tue Jun 24 08:05:30 2008
New Revision: 64496

Log:
Typo in comment.

Modified:
   python/trunk/Objects/stringlib/formatter.h

Modified: python/trunk/Objects/stringlib/formatter.h
==============================================================================
--- python/trunk/Objects/stringlib/formatter.h	(original)
+++ python/trunk/Objects/stringlib/formatter.h	Tue Jun 24 08:05:30 2008
@@ -586,7 +586,7 @@
     }
 
     /* 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. */


More information about the Python-checkins mailing list