Commit 60bba83b authored by Valentin Haenel's avatar Valentin Haenel Committed by Stéphane Wirtel

Doc: Fix typo in fastsearch comments (GH-14608)

parent 8fcaffb0
...@@ -52,7 +52,7 @@ STRINGLIB(find_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch) ...@@ -52,7 +52,7 @@ STRINGLIB(find_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch)
return (p - s); return (p - s);
return -1; return -1;
#else #else
/* use memchr if we can choose a needle without two many likely /* use memchr if we can choose a needle without too many likely
false positives */ false positives */
const STRINGLIB_CHAR *s1, *e1; const STRINGLIB_CHAR *s1, *e1;
unsigned char needle = ch & 0xff; unsigned char needle = ch & 0xff;
...@@ -111,7 +111,7 @@ STRINGLIB(rfind_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch) ...@@ -111,7 +111,7 @@ STRINGLIB(rfind_char)(const STRINGLIB_CHAR* s, Py_ssize_t n, STRINGLIB_CHAR ch)
return (p - s); return (p - s);
return -1; return -1;
#else #else
/* use memrchr if we can choose a needle without two many likely /* use memrchr if we can choose a needle without too many likely
false positives */ false positives */
const STRINGLIB_CHAR *s1; const STRINGLIB_CHAR *s1;
Py_ssize_t n1; Py_ssize_t n1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment