From 595b86df60fd16a8a1ef2ccb9837ad1b6292adc6 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 25 Mar 2025 10:28:29 -0400 Subject: [PATCH] Added comment to function --- regex/compile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/regex/compile.go b/regex/compile.go index c98e857..b12e862 100644 --- a/regex/compile.go +++ b/regex/compile.go @@ -47,6 +47,7 @@ func (re *Reg) UnmarshalText(text []byte) error { return err } +// Longest makes future searches prefer the longest branch of an alternation, as opposed to the leftmost branch. func (re *Reg) Longest() { re.preferLongest = true }