summaryrefslogtreecommitdiff
path: root/src/go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2014-10-06 15:08:31 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2014-10-06 15:08:31 -0700
commitb69634e55db1205234ef87e3def9449f26fa4f72 (patch)
tree4e5e76be4e5e2310f50ff270a8de8edd85eb892c /src/go
parent4db418c1c96f6b08dc1ea6a20e84a866b36ad647 (diff)
downloadgo-b69634e55db1205234ef87e3def9449f26fa4f72.tar.gz
go/build: update docs for GOOS.go change
Forgotten in https://codereview.appspot.com/147690043/ Update Issue 8838 LGTM=r R=r CC=golang-codereviews, rsc https://codereview.appspot.com/152220045
Diffstat (limited to 'src/go')
-rw-r--r--src/go/build/doc.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/go/build/doc.go b/src/go/build/doc.go
index 56878f2b4..75a827bb9 100644
--- a/src/go/build/doc.go
+++ b/src/go/build/doc.go
@@ -108,12 +108,10 @@
// *_GOOS
// *_GOARCH
// *_GOOS_GOARCH
-// (example: source_windows_amd64.go) or the literals:
-// GOOS
-// GOARCH
-// (example: windows.go) where GOOS and GOARCH represent any known operating
-// system and architecture values respectively, then the file is considered to
-// have an implicit build constraint requiring those terms.
+// (example: source_windows_amd64.go) where GOOS and GOARCH represent
+// any known operating system and architecture values respectively, then
+// the file is considered to have an implicit build constraint requiring
+// those terms.
//
// To keep a file from being considered for the build:
//