From: Brad Fitzpatrick Date: Mon, 23 Mar 2015 19:08:11 +0000 (-0700) Subject: regexp: fix link to RE2 syntax X-Git-Tag: go1.5beta1~1467 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fc9a234d9f9814770f8572c321f24aeac2bfb1a1;p=gostls13.git regexp: fix link to RE2 syntax Fixes #10224 Change-Id: I21037379b4667575e51ab0b6b683138c505c3f68 Reviewed-on: https://go-review.googlesource.com/7960 Reviewed-by: David Crawshaw --- diff --git a/src/regexp/regexp.go b/src/regexp/regexp.go index f20d1099b5..70ba9d0efe 100644 --- a/src/regexp/regexp.go +++ b/src/regexp/regexp.go @@ -7,7 +7,7 @@ // 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 -// http://code.google.com/p/re2/wiki/Syntax, except for \C. +// https://golang.org/s/re2syntax, except for \C. // For an overview of the syntax, run // godoc regexp/syntax //