summaryrefslogtreecommitdiff
path: root/src/cmd/go/fmt.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/fmt.go')
-rw-r--r--src/cmd/go/fmt.go37
1 files changed, 1 insertions, 36 deletions
diff --git a/src/cmd/go/fmt.go b/src/cmd/go/fmt.go
index 9d3c911dd..65dc3ca59 100644
--- a/src/cmd/go/fmt.go
+++ b/src/cmd/go/fmt.go
@@ -6,7 +6,6 @@ package main
func init() {
addBuildFlagsNX(cmdFmt)
- addBuildFlagsNX(cmdDoc)
}
var cmdFmt = &Command{
@@ -25,7 +24,7 @@ The -x flag prints commands as they are executed.
To run gofmt with specific options, run gofmt itself.
-See also: go doc, go fix, go vet.
+See also: go fix, go vet.
`,
}
@@ -37,37 +36,3 @@ func runFmt(cmd *Command, args []string) {
run(stringList("gofmt", "-l", "-w", relPaths(pkg.allgofiles)))
}
}
-
-var cmdDoc = &Command{
- Run: runDoc,
- UsageLine: "doc [-n] [-x] [packages]",
- Short: "run godoc on package sources",
- Long: `
-Doc runs the godoc command on the packages named by the
-import paths.
-
-For more about godoc, see 'godoc godoc'.
-For more about specifying packages, see 'go help packages'.
-
-The -n flag prints commands that would be executed.
-The -x flag prints commands as they are executed.
-
-To run godoc with specific options, run godoc itself.
-
-See also: go fix, go fmt, go vet.
- `,
-}
-
-func runDoc(cmd *Command, args []string) {
- for _, pkg := range packages(args) {
- if pkg.ImportPath == "command-line arguments" {
- errorf("go doc: cannot use package file list")
- continue
- }
- if pkg.local {
- run("godoc", pkg.Dir)
- } else {
- run("godoc", pkg.ImportPath)
- }
- }
-}