aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-02-22 09:34:13 -0800
committerRobert Griesemer <gri@golang.org>2011-02-22 09:34:13 -0800
commit556506e8692af033fba6411ba926733daf1fcd0a (patch)
tree9b42c6505b3f305d8bd03fd4972c40c750d60826
parent795ff00df0f2e2eae44b50f33e2b63c23ec1a862 (diff)
downloadgo-556506e8692af033fba6411ba926733daf1fcd0a.tar.gz
go-556506e8692af033fba6411ba926733daf1fcd0a.zip
go spec: fix local link
Fixes #1543. R=rsc, r2 CC=golang-dev https://golang.org/cl/4169068
-rw-r--r--doc/go_spec.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html
index 72cfa63056..54fa50421e 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -1,5 +1,5 @@
<!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of February 19, 2011 -->
+<!-- subtitle Version of February 22, 2011 -->
<!--
TODO
@@ -4796,7 +4796,7 @@ The PackageName is used in <a href="#Qualified_identifiers">qualified identifier
to access the exported identifiers of the package within the importing source file.
It is declared in the <a href="#Blocks">file block</a>.
If the PackageName is omitted, it defaults to the identifier specified in the
-<a href="#Package_clauses">package clause</a> of the imported package.
+<a href="#Package_clause">package clause</a> of the imported package.
If an explicit period (<code>.</code>) appears instead of a name, all the
package's exported identifiers will be declared in the current file's
file block and can be accessed without a qualifier.