]> Cypherpunks repositories - gostls13.git/commitdiff
go/build: fix doc typo
authorPieter Droogendijk <pieter@binky.org.uk>
Mon, 25 Jun 2012 21:20:48 +0000 (17:20 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 25 Jun 2012 21:20:48 +0000 (17:20 -0400)
go/build section "Build Constraints", first paragraph said:
  "... they must be appear near the top of the file ..."
fixed to:
  "... they must appear near the top of the file ..."

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/6329060

src/pkg/go/build/doc.go

index 618eefe9e46de24add3accd0978b1c521c58b7bb..04e48c1547b2f472f4b9b34e927e0295bc6b55c9 100644 (file)
@@ -60,7 +60,7 @@
 // A build constraint is a line comment beginning with the directive +build
 // that lists the conditions under which a file should be included in the package.
 // Constraints may appear in any kind of source file (not just Go), but
-// they must be appear near the top of the file, preceded
+// they must appear near the top of the file, preceded
 // only by blank lines and other line comments.
 //
 // A build constraint is evaluated as the OR of space-separated options;