summaryrefslogtreecommitdiffstats
path: root/Modules/_xxtestfuzz/fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_xxtestfuzz/fuzzer.c')
-rw-r--r--Modules/_xxtestfuzz/fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_xxtestfuzz/fuzzer.c b/Modules/_xxtestfuzz/fuzzer.c
index 2446e71..dae1eae 100644
--- a/Modules/_xxtestfuzz/fuzzer.c
+++ b/Modules/_xxtestfuzz/fuzzer.c
@@ -210,7 +210,7 @@ static int fuzz_sre_compile(const char* data, size_t size) {
/* Some random patterns used to test re.match.
Be careful not to add catostraphically slow regexes here, we want to
- excercise the matching code without causing timeouts.*/
+ exercise the matching code without causing timeouts.*/
static const char* regex_patterns[] = {
".", "^", "abc", "abc|def", "^xxx$", "\\b", "()", "[a-zA-Z0-9]",
"abc+", "[^A-Z]", "[x]", "(?=)", "a{z}", "a+b", "a*?", "a??", "a+?",