Commit baaa08ea authored by Pieter Droogendijk's avatar Pieter Droogendijk Committed by Russ Cox

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
parent 4c98584e
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
// A build constraint is a line comment beginning with the directive +build // 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. // 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 // 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. // only by blank lines and other line comments.
// //
// A build constraint is evaluated as the OR of space-separated options; // A build constraint is evaluated as the OR of space-separated options;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment