From: Francisco Souza Date: Wed, 9 May 2012 06:16:02 +0000 (+1000) Subject: cmd/go: fix remote help reference to "go help packages" X-Git-Tag: go1.1rc2~3227 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=25a8a8dab8ae1638b91ec884e6db02c3bc7fe3e6;p=gostls13.git cmd/go: fix remote help reference to "go help packages" go help remote used to reference "go help importpath", which has changed to "go help packages". Fixes #3598. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6201065 --- diff --git a/src/cmd/go/help.go b/src/cmd/go/help.go index 47ea0c7110..0907c5afb4 100644 --- a/src/cmd/go/help.go +++ b/src/cmd/go/help.go @@ -61,7 +61,7 @@ var helpRemote = &Command{ Short: "remote import path syntax", Long: ` -An import path (see 'go help importpath') denotes a package +An import path (see 'go help packages') denotes a package stored in the local file system. Certain import paths also describe how to obtain the source code for the package using a revision control system.