aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-03-05 11:52:31 +1100
committerRob Pike <r@golang.org>2012-03-05 11:52:31 +1100
commit2c0a46d6046cfd4895a30dbcb3d60d0ad9744166 (patch)
treef69f00ed226f093e21cc24b6e1ed3336f0e75df6
parent4d7017dcd02a4fb35b2cd3b31b852d858bd5fbb3 (diff)
downloadgo-2c0a46d6046cfd4895a30dbcb3d60d0ad9744166.tar.gz
go-2c0a46d6046cfd4895a30dbcb3d60d0ad9744166.zip
cmd/go: fix grammar error in help messages
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5729061
-rw-r--r--src/cmd/go/build.go2
-rw-r--r--src/cmd/go/doc.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go
index cb1774103a..c330bd5de9 100644
--- a/src/cmd/go/build.go
+++ b/src/cmd/go/build.go
@@ -46,7 +46,7 @@ The build flags are shared by the build, install, run, and test commands:
-a
force rebuilding of packages that are already up-to-date.
-n
- print the commands but does not run them.
+ print the commands but do not run them.
-p n
the number of builds that can be run in parallel.
The default is the number of CPUs available.
diff --git a/src/cmd/go/doc.go b/src/cmd/go/doc.go
index 633b117024..51514cb4fb 100644
--- a/src/cmd/go/doc.go
+++ b/src/cmd/go/doc.go
@@ -60,7 +60,7 @@ The build flags are shared by the build, install, run, and test commands:
-a
force rebuilding of packages that are already up-to-date.
-n
- print the commands but does not run them.
+ print the commands but do not run them.
-p n
the number of builds that can be run in parallel.
The default is the number of CPUs available.