From 7bbd4f1e3c0dc736adddf1c1f39daa22da0ad273 Mon Sep 17 00:00:00 2001 From: Danlock Date: Tue, 19 Dec 2023 10:53:58 -0500 Subject: [PATCH] Fix regex link typo --- ext/unicode/unicode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/unicode/unicode.go b/ext/unicode/unicode.go index 22784d5..d44a92f 100644 --- a/ext/unicode/unicode.go +++ b/ext/unicode/unicode.go @@ -8,7 +8,7 @@ // The implementation is not 100% compatible with the [ICU extension]: // - upper() and lower() use [strings.ToUpper], [strings.ToLower] and [cases]; // - the LIKE operator follows [strings.EqualFold] rules; -// - the REGEXP operator uses Go [regex/syntax]; +// - the REGEXP operator uses Go [regexp/syntax]; // - collation sequences use [collate]. // // Expect subtle differences (e.g.) in the handling of Turkish case folding.