[Python-checkins] cpython: Fix typo

antoine.pitrou python-checkins at python.org
Mon Oct 17 19:24:56 CEST 2011


http://hg.python.org/cpython/rev/ca00e021322d
changeset:   72959:ca00e021322d
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Mon Oct 17 19:21:04 2011 +0200
summary:
  Fix typo

files:
  Objects/stringlib/fastsearch.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/stringlib/fastsearch.h b/Objects/stringlib/fastsearch.h
--- a/Objects/stringlib/fastsearch.h
+++ b/Objects/stringlib/fastsearch.h
@@ -115,7 +115,7 @@
             unsigned char needle;
             needle = p[0] & 0xff;
 #if STRINGLIB_SIZEOF_CHAR > 1
-            /* If looking for a multiple of 256, we'd have two
+            /* If looking for a multiple of 256, we'd have too
                many false positives looking for the '\0' byte in UCS2
                and UCS4 representations. */
             if (needle != 0)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list