]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
docs: Update where
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 29 Jul 2023 17:27:30 +0000 (19:27 +0200)
committerGitHub <noreply@github.com>
Sat, 29 Jul 2023 17:27:30 +0000 (19:27 +0200)
Go doesn't use the RE2 (C++) library, it's a pure Go implementation.

docs/content/en/functions/where.md

index bcdc5b4653649976bb51ce149ebcb43e84cf68e7..664507eada3a02736b5bfd1e98e0465edef0ab96 100644 (file)
@@ -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 %}}