aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgulyasm <mgulyas86@gmail.com>2017-01-12 14:26:00 +0100
committerRuss Cox <rsc@golang.org>2017-01-17 20:48:27 +0000
commitd8711919dbddd8684eedee834041297388cf13a3 (patch)
tree68c6ce30d1fe5fa7c4704c16be9172d4e7b7024f
parent48d8edb5b21db190f717e035b4d9ab61a077f9d7 (diff)
downloadgo-d8711919dbddd8684eedee834041297388cf13a3.tar.gz
go-d8711919dbddd8684eedee834041297388cf13a3.zip
cmd/go: fix bug help message
The bug subcommand opens up the browser instead of printing information. Fixes help message to reflect that. Fixes #18630. Change-Id: I660c94bc65ef1994292cfd72d08a544699545701 Reviewed-on: https://go-review.googlesource.com/35150 Reviewed-by: Russ Cox <rsc@golang.org>
-rw-r--r--src/cmd/go/bug.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cmd/go/bug.go b/src/cmd/go/bug.go
index cbd258b80b..658f6dabd9 100644
--- a/src/cmd/go/bug.go
+++ b/src/cmd/go/bug.go
@@ -20,11 +20,10 @@ import (
var cmdBug = &Command{
Run: runBug,
UsageLine: "bug",
- Short: "print information for bug reports",
+ Short: "start a bug report",
Long: `
-Bug prints information that helps file effective bug reports.
-
-Bugs may be reported at https://golang.org/issue/new.
+Bug opens the default browser and starts a new bug report.
+The report includes useful system information.
`,
}