diff options
-rw-r--r-- | bench/regex-match.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/regex-match.myr b/bench/regex-match.myr index dd78860..90b1ead 100644 --- a/bench/regex-match.myr +++ b/bench/regex-match.myr @@ -29,7 +29,7 @@ const matchall = {ctx } const searchhello = {ctx - match regex.search(dotstar, str) + match regex.search(hello, str) | `std.Some m: regex.matchfree(m) | `std.None: std.fatal("Didn't match regex\n") ;; |