URI: 
       docs: Update where - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit d5247788ee4719905b7c0ae1ff45d097b61e368a
   DIR parent 036e260d8daae4b8ab385e7431f9167df9c7f4d9
  HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Sat, 29 Jul 2023 19:27:30 +0200
       
       docs: Update where
       
       Go doesn't use the RE2 (C++) library, it's a pure Go implementation.
       Diffstat:
         M docs/content/en/functions/where.md  |       3 +--
       
       1 file changed, 1 insertion(+), 2 deletions(-)
       ---
   DIR diff --git 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 %}}