From: Volker Dobler Date: Wed, 14 Mar 2012 16:49:57 +0000 (-0400) Subject: cmd/go: trivial help message fix for go help get X-Git-Tag: weekly.2012-03-22~96 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1ddc9feb53d039f06ceb94cc4f6d0339be9a7ae2;p=gostls13.git cmd/go: trivial help message fix for go help get Direct reference to go help build where the flags are described. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/5825046 --- diff --git a/src/cmd/go/doc.go b/src/cmd/go/doc.go index eb9c38b639..775f305d2b 100644 --- a/src/cmd/go/doc.go +++ b/src/cmd/go/doc.go @@ -213,7 +213,7 @@ Get downloads and installs the packages named by the import paths, along with their dependencies. The -a, -n, -v, -x, and -p flags have the same meaning as in 'go build' -and 'go install'. See 'go help install'. +and 'go install'. See 'go help build'. The -d flag instructs get to stop after downloading the packages; that is, it instructs get not to install the packages. diff --git a/src/cmd/go/get.go b/src/cmd/go/get.go index b6a26f0e20..abaf5ffa0a 100644 --- a/src/cmd/go/get.go +++ b/src/cmd/go/get.go @@ -24,7 +24,7 @@ Get downloads and installs the packages named by the import paths, along with their dependencies. The -a, -n, -v, -x, and -p flags have the same meaning as in 'go build' -and 'go install'. See 'go help install'. +and 'go install'. See 'go help build'. The -d flag instructs get to stop after downloading the packages; that is, it instructs get not to install the packages.