summaryrefslogtreecommitdiff
path: root/src/cmd/go/fix.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-02-04 07:03:20 +1100
committerRob Pike <r@golang.org>2012-02-04 07:03:20 +1100
commit1a201cc4b6c5c2e5435d3bb8eeb16ff2e7251768 (patch)
tree9086e5f9e35d5a27871a781ab0c273dc34999d5e /src/cmd/go/fix.go
parent6caa3056214297bc20291c545af06c1107b553a8 (diff)
downloadgo-1a201cc4b6c5c2e5435d3bb8eeb16ff2e7251768.tar.gz
tools: update references to "x" to be "go tool x"
For instance, don't talk about gofix, talk about the fix tool or "go tool fix". R=golang-dev, rsc, r CC=golang-dev http://codereview.appspot.com/5608053
Diffstat (limited to 'src/cmd/go/fix.go')
-rw-r--r--src/cmd/go/fix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/fix.go b/src/cmd/go/fix.go
index 19091f35b..6a0ad0774 100644
--- a/src/cmd/go/fix.go
+++ b/src/cmd/go/fix.go
@@ -7,7 +7,7 @@ package main
var cmdFix = &Command{
Run: runFix,
UsageLine: "fix [importpath...]",
- Short: "run gofix on packages",
+ Short: "run go tool fix on packages",
Long: `
Fix runs the Go fix command on the packages named by the import paths.