hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 91d1be038704209730a476abec6caab3ac213002
parent 339fdf9693cc554798beb3326f103200199d45f6
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu, 28 Apr 2022 17:27:00 -0400

regex: remove regex:: prefix from links in README

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mregex/README | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/regex/README b/regex/README @@ -6,12 +6,12 @@ By default, matches will be found anywhere in the given string. The ^ and $ characters can be used to anchor the match to the beginning or end of the string. -find() returns a slice of [[regex::matchgroup]]s for the first match. The -first [[regex::matchgroup]] represents the entire match, while the rest -represent the submatches, specified in the expression using (parens). +find() returns a slice of [[matchgroup]]s for the first match. The first +[[matchgroup]] represents the entire match, while the rest represent the +submatches, specified in the expression using (parens). findall() finds all non-overlapping matches in the given string and returns -a slice of slices of [[regex::matchgroup]]s. +a slice of slices of [[matchgroup]]s. This module implements the POSIX match disambiguation rules by returning the longest match among the leftmost matches.