From: Bjørn Erik Pedersen Date: Sat, 29 Jul 2023 17:27:30 +0000 (+0200) Subject: docs: Update where X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d5247788e;p=brevno-suite%2Fhugo docs: Update where Go doesn't use the RE2 (C++) library, it's a pure Go implementation. --- diff --git a/docs/content/en/functions/where.md b/docs/content/en/functions/where.md index bcdc5b465..664507ead 100644 --- a/docs/content/en/functions/where.md +++ b/docs/content/en/functions/where.md @@ -118,9 +118,8 @@ When specifying the regular expression, use a raw [string literal] (backticks) i [string literal]: https://go.dev/ref/spec#String_literals -This function uses the [RE2] regular expression library. See the [RE2 syntax documentation] for details. Note that the RE2 `\C` escape sequence is not supported. +Go's regular expression package implements the [RE2 syntax]. Note that the RE2 `\C` escape sequence is not supported. -[RE2]: https://github.com/google/re2/ [RE2 syntax documentation]: https://github.com/google/re2/wiki/Syntax/ {{% note %}}