aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Kortschak <dan@kortschak.io>2021-08-23 19:13:35 +0930
committerAlexander Rakoczy <alex@golang.org>2021-08-26 18:26:42 +0000
commit5e6a7e9b860d7c8f589eec3c123469ea8071689f (patch)
treeaab890b999c296cecf9d0138515344ae736f327a
parent166b691b652356074ea346157e8bbc13933380aa (diff)
downloadgo-5e6a7e9b860d7c8f589eec3c123469ea8071689f.tar.gz
go-5e6a7e9b860d7c8f589eec3c123469ea8071689f.zip
embed: remove reference to global variables in docs
Refering to variable is both redundant since package scope is used, and incorrect since global variables are not described in the spec. Change-Id: Ib08a9f072fc800ee36549f758b68167d8f044878 Reviewed-on: https://go-review.googlesource.com/c/go/+/344214 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Alexander Rakoczy <alex@golang.org> Run-TryBot: Alexander Rakoczy <alex@golang.org> TryBot-Result: Go Bot <gobot@golang.org>
-rw-r--r--src/embed/embed.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/embed/embed.go b/src/embed/embed.go
index 851cc216fc..5dcd7f227d 100644
--- a/src/embed/embed.go
+++ b/src/embed/embed.go
@@ -83,8 +83,7 @@
//
// The //go:embed directive can be used with both exported and unexported variables,
// depending on whether the package wants to make the data available to other packages.
-// It can only be used with global variables at package scope,
-// not with local variables.
+// It can only be used with variables at package scope, not with local variables.
//
// Patterns must not match files outside the package's module, such as ‘.git/*’ or symbolic links.
// Matches for empty directories are ignored. After that, each pattern in a //go:embed line