1
0
mirror of https://github.com/golang/go synced 2024-11-12 08:10:21 -07:00

cmd/pack,vet: use go doc instead of godoc in doc

Change-Id: Ic5f62a7d0a5c090da69213d1d0187af0ea48e358
Reviewed-on: https://go-review.googlesource.com/20820
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Hyang-Ah Hana Kim 2016-03-17 15:32:20 -04:00
parent 3a17fdaba0
commit 50487b2c8d
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ For compatibility with old Go build environments the op string grc is
accepted as a synonym for c.
For more information, run
godoc cmd/pack`
go doc cmd/pack`
func usage() {
fmt.Fprintln(os.Stderr, usageMessage)

View File

@ -164,7 +164,7 @@ func Usage() {
fmt.Fprintf(os.Stderr, "\tvet [flags] directory...\n")
fmt.Fprintf(os.Stderr, "\tvet [flags] files... # Must be a single package\n")
fmt.Fprintf(os.Stderr, "For more information run\n")
fmt.Fprintf(os.Stderr, "\tgodoc cmd/vet\n\n")
fmt.Fprintf(os.Stderr, "\tgo doc cmd/vet\n\n")
fmt.Fprintf(os.Stderr, "Flags:\n")
flag.PrintDefaults()
os.Exit(2)