]> granicus.if.org Git - python/commitdiff
Fix typo
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 17 Oct 2011 17:21:04 +0000 (19:21 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 17 Oct 2011 17:21:04 +0000 (19:21 +0200)
Objects/stringlib/fastsearch.h

index eb3d694cc6af2ff7a7a378ea346db9a60ea1786a..f3e0461b77ea302df40347e101f9a72d10aa24af 100644 (file)
@@ -115,7 +115,7 @@ FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n,
             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)