commit 2a34935300a56982f743338bbb718a238310daca
parent 91d1be038704209730a476abec6caab3ac213002
Author: Sebastian <sebastian@sebsite.pw>
Date: Thu, 28 Apr 2022 17:27:01 -0400
regex: capitalize Hare in README
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/regex/README b/regex/README
@@ -28,7 +28,7 @@ the longest match among the leftmost matches.
// the main match, as well as all submatches.
};
- const all_matches = regex::findall(re, "Hello hare, hello hare.")!;
+ const all_matches = regex::findall(re, "Hello Hare, hello Hare.")!;
match (all_matches) {
case void => void;
case let groupsets: [][]regex::matchgroup =>