Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
9815515d
Commit
9815515d
authored
May 17, 2012
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/go: fix typo
Fixes #3619. R=golang-dev, bradfitz, r CC=golang-dev
https://golang.org/cl/6211055
parent
fdc45367
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/cmd/go/doc.go
src/cmd/go/doc.go
+1
-1
src/cmd/go/help.go
src/cmd/go/help.go
+1
-1
src/cmd/go/main.go
src/cmd/go/main.go
+1
-1
No files found.
src/cmd/go/doc.go
View file @
9815515d
...
...
@@ -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.
...
...
src/cmd/go/help.go
View file @
9815515d
...
...
@@ -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 corre
s
ponding 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.
...
...
src/cmd/go/main.go
View file @
9815515d
...
...
@@ -144,7 +144,7 @@ func main() {
}
}
fmt
.
Fprintf
(
os
.
Stderr
,
"go: unknown subcommand %
#
q
\n
Run 'go help' for usage.
\n
"
,
args
[
0
])
fmt
.
Fprintf
(
os
.
Stderr
,
"go: unknown subcommand %q
\n
Run 'go help' for usage.
\n
"
,
args
[
0
])
setExitStatus
(
2
)
exit
()
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment