]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1] go/build: fix doc typo
authorPieter Droogendijk <pieter@binky.org.uk>
Fri, 21 Sep 2012 19:53:49 +0000 (05:53 +1000)
committerRuss Cox <rsc@golang.org>
Fri, 21 Sep 2012 19:53:49 +0000 (05:53 +1000)
««« backport e12419d09635
go/build: fix doc typo

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 67c26ac7f4f7edc4ab8792ebcaf75f7cc9573461..9b7a946f2b8455090eb7e55dfc04684b68ee9df3 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;