From baaa08eab072aee3e00203aab6b91e5e49a76929 Mon Sep 17 00:00:00 2001 From: Pieter Droogendijk Date: Mon, 25 Jun 2012 17:20:48 -0400 Subject: [PATCH] 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/go/build/doc.go b/src/pkg/go/build/doc.go index 618eefe9e46..04e48c1547b 100644 --- a/src/pkg/go/build/doc.go +++ b/src/pkg/go/build/doc.go @@ -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;