]> Cypherpunks repositories - gostls13.git/commitdiff
regexp: suggest go doc, not godoc
authorRob Pike <r@golang.org>
Mon, 1 Jun 2015 19:43:18 +0000 (12:43 -0700)
committerRob Pike <r@golang.org>
Mon, 1 Jun 2015 20:16:31 +0000 (20:16 +0000)
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>
src/regexp/regexp.go

index 70ba9d0efe54754f082c7601fb2819505f03bcef..4e4b41242a3749662835ef1874244d475d67b021 100644 (file)
@@ -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.