aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2015-06-01 12:43:18 -0700
committerRob Pike <r@golang.org>2015-06-01 20:16:31 +0000
commitae38ef4cdf2e8cf843b9d3872e66586327d744ae (patch)
tree8647cae49a2d03a62765549a6e685ed2ae2ed883 /src
parente15f89c526ec464a78b5e76279090cba785c1326 (diff)
downloadgo-ae38ef4cdf2e8cf843b9d3872e66586327d744ae.tar.xz
regexp: suggest go doc, not godoc
In 1.6, go doc is more likely to be available. Change-Id: I970ad1d3317b35273f5c8d830f75713d3570c473 Reviewed-on: https://go-review.googlesource.com/10518 Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/regexp/regexp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp/regexp.go b/src/regexp/regexp.go
index 70ba9d0efe..4e4b41242a 100644
--- a/src/regexp/regexp.go
+++ b/src/regexp/regexp.go
@@ -9,7 +9,7 @@
// 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, run
-// godoc regexp/syntax
+// go doc regexp/syntax
//
// The regexp implementation provided by this package is
// guaranteed to run in time linear in the size of the input.