1
0
mirror of https://github.com/golang/go synced 2024-09-24 21:20:13 -06:00

cmd/go: fix typo

Fixes #3619.

R=golang-dev, bradfitz, r
CC=golang-dev
https://golang.org/cl/6211055
This commit is contained in:
Russ Cox 2012-05-17 02:00:40 -04:00
parent fdc45367f9
commit 9815515df1
3 changed files with 3 additions and 3 deletions

View 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.

View 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.

View 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()
}