summaryrefslogtreecommitdiff
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
commit9b3a22e0e0697989deab496b32e7d00b1b3cd030 (patch)
tree25d66d68b8d57b1c9764378323a8779d4b1e9cba
parent1856a505e22afa4a1da11764999ae478daa685f1 (diff)
downloadgo-9b3a22e0e0697989deab496b32e7d00b1b3cd030.tar.gz
cmd/go: fix grammar error in help messages
R=golang-dev, dsymonds CC=golang-dev http://codereview.appspot.com/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 cb1774103..c330bd5de 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 633b11702..51514cb4f 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.