diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-08-27 15:55:36 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-08-27 15:55:36 -0700 |
commit | e83d16d5bd500b8e1913a836560f943a757ab86b (patch) | |
tree | ed88a93da5185122d16eec51086a053f0910b9a0 /bench | |
parent | 6121d28dc28103cb85b22fe404daaa8c441790b4 (diff) | |
download | mc-e83d16d5bd500b8e1913a836560f943a757ab86b.tar.gz |
Rename `std.Fail to `std.Err.
Diffstat (limited to 'bench')
-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 9416212..47c9264 100644 --- a/bench/regex-match.myr +++ b/bench/regex-match.myr @@ -13,7 +13,7 @@ const main = { for i = 0; i < 100; i++ match regex.compile(".*") | `std.Ok r: re = r - | `std.Fail m: std.fatal("couldn't compile regex: %s\n", m) + | `std.Err m: std.fatal("couldn't compile regex: %s\n", m) ;; match regex.exec(re, str) |