]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1] cmd/go: fix typo
authorRuss Cox <rsc@golang.org>
Wed, 13 Jun 2012 20:23:58 +0000 (16:23 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 13 Jun 2012 20:23:58 +0000 (16:23 -0400)
««« backport 9942561a3fe2
cmd/go: fix typo

Fixes #3619.

R=golang-dev, bradfitz, r
CC=golang-dev
https://golang.org/cl/6211055

»»»

src/cmd/go/doc.go
src/cmd/go/help.go
src/cmd/go/main.go

index a39534a99671f793e29d036bd6b9914b1e0a4685..5e7b10692dd008e9b5cfd6e1e926813d4f1b6f70 100644 (file)
@@ -546,7 +546,7 @@ in those files and ignoring any other files in the directory.
 
 Remote import path syntax
 
-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.
index 0907c5afb4cbf078327d02f2c46684891caf58e4..7539753af0a39c32557e04b64c26a7e2329888eb 100644 (file)
@@ -138,7 +138,7 @@ The meta tag has the form:
 
        <meta name="go-import" content="import-prefix vcs repo-root">
 
-The import-prefix is the import path correponding to the repository
+The import-prefix is the import path corresponding to the repository
 root. It must be a prefix or an exact match of the package being
 fetched with "go get". If it's not an exact match, another http
 request is made at the prefix to verify the <meta> tags match.
index a17082c2b41b43adab37af1ea57592638a2f5827..20585d1beaab63bd1a4c020e48065a31a51aab70 100644 (file)
@@ -144,7 +144,7 @@ func main() {
                }
        }
 
-       fmt.Fprintf(os.Stderr, "go: unknown subcommand %#q\nRun 'go help' for usage.\n", args[0])
+       fmt.Fprintf(os.Stderr, "go: unknown subcommand %q\nRun 'go help' for usage.\n", args[0])
        setExitStatus(2)
        exit()
 }