From 76bdd229da8827f9a2ebd500735de0d02014d7ef Mon Sep 17 00:00:00 2001 From: Mauri de Souza Meneguzzo Date: Tue, 5 Dec 2023 23:12:20 -0300 Subject: [PATCH] regexp: remove reference to external RE2 wiki from the docs The regexp documention point to the google/re2 syntax page, which causes confusion since users expect feature parity with RE2, which might not be the case if you are using an older version of Go. In regexp/syntax/doc.go there is already an autogenerated syntax based on RE2 and we already link to that in the docs, so removing the external link does not result in any loss of information. Fixes #64108 --- src/regexp/regexp.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/regexp/regexp.go b/src/regexp/regexp.go index 462f235b1bb12f..4c43a5f81c26a0 100644 --- a/src/regexp/regexp.go +++ b/src/regexp/regexp.go @@ -6,8 +6,6 @@ // // The syntax of the regular expressions accepted is the same // general syntax used by Perl, Python, and other languages. -// More precisely, it is the syntax accepted by RE2 and described at -// https://golang.org/s/re2syntax, except for \C. // For an overview of the syntax, see the [regexp/syntax] package. // // The regexp implementation provided by this package is