summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-07-29 19:27:30 +0200
committerGitHub <noreply@github.com>2023-07-29 19:27:30 +0200
commitd5247788ee4719905b7c0ae1ff45d097b61e368a (patch)
tree0f5f160e79231f4e5906dcfe5cd432df2352827b /docs
parent036e260d8daae4b8ab385e7431f9167df9c7f4d9 (diff)
docs: Update where
Go doesn't use the RE2 (C++) library, it's a pure Go implementation.
Diffstat (limited to 'docs')
-rw-r--r--docs/content/en/functions/where.md3
1 files changed, 1 insertions, 2 deletions
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 %}}