mirror of https://github.com/python/cpython
Fix typo
This commit is contained in:
parent
897d059221
commit
5b9f4c1539
|
@ -115,7 +115,7 @@ FASTSEARCH(const STRINGLIB_CHAR* s, Py_ssize_t n,
|
||||||
unsigned char needle;
|
unsigned char needle;
|
||||||
needle = p[0] & 0xff;
|
needle = p[0] & 0xff;
|
||||||
#if STRINGLIB_SIZEOF_CHAR > 1
|
#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
|
many false positives looking for the '\0' byte in UCS2
|
||||||
and UCS4 representations. */
|
and UCS4 representations. */
|
||||||
if (needle != 0)
|
if (needle != 0)
|
||||||
|
|
Loading…
Reference in New Issue