1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:44:40 -07:00

go spec: fix local link

Fixes #1543.

R=rsc, r2
CC=golang-dev
https://golang.org/cl/4169068
This commit is contained in:
Robert Griesemer 2011-02-22 09:34:13 -08:00
parent 795ff00df0
commit 556506e869

View File

@ -1,5 +1,5 @@
<!-- title The Go Programming Language Specification --> <!-- title The Go Programming Language Specification -->
<!-- subtitle Version of February 19, 2011 --> <!-- subtitle Version of February 22, 2011 -->
<!-- <!--
TODO 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. to access the exported identifiers of the package within the importing source file.
It is declared in the <a href="#Blocks">file block</a>. It is declared in the <a href="#Blocks">file block</a>.
If the PackageName is omitted, it defaults to the identifier specified in the 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 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 package's exported identifiers will be declared in the current file's
file block and can be accessed without a qualifier. file block and can be accessed without a qualifier.