diff options
author | Michael Stapelberg <stapelberg@debian.org> | 2013-03-04 21:27:36 +0100 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2013-03-04 21:27:36 +0100 |
commit | 04b08da9af0c450d645ab7389d1467308cfc2db8 (patch) | |
tree | db247935fa4f2f94408edc3acd5d0d4f997aa0d8 /doc/go1.html | |
parent | 917c5fb8ec48e22459d77e3849e6d388f93d3260 (diff) | |
download | golang-upstream/1.1_hg20130304.tar.gz |
Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304
Diffstat (limited to 'doc/go1.html')
-rw-r--r-- | doc/go1.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/go1.html b/doc/go1.html index e1afe479a..491fd7bf7 100644 --- a/doc/go1.html +++ b/doc/go1.html @@ -618,8 +618,6 @@ The packages in their new locations are: <ul> <li><code>old/netchan</code></li> -<li><code>old/regexp</code></li> -<li><code>old/template</code></li> </ul> <p> @@ -639,6 +637,8 @@ Go 1 deletes several packages outright: <li><code>container/vector</code></li> <li><code>exp/datafmt</code></li> <li><code>go/typechecker</code></li> +<li><code>old/regexp</code></li> +<li><code>old/template</code></li> <li><code>try</code></li> </ul> @@ -1676,7 +1676,7 @@ instead of a <code>Visitor</code> interface value. The <code>WalkFunc</code> function will be called even for files or directories that could not be opened; in such cases the error argument will describe the failure. If a directory's contents are to be skipped, -the function should return the value <a href="/pkg/path/filepath/#variables"><code>filepath.SkipDir</code></a> +the function should return the value <a href="/pkg/path/filepath/#pkg-variables"><code>filepath.SkipDir</code></a> </p> {{code "/doc/progs/go1.go" `/STARTWALK/` `/ENDWALK/`}} @@ -1865,7 +1865,7 @@ made easier with the new structure of the packages. The imports will be updated by fix tool. Single-template uses will be otherwise be largely unaffected. Code that uses multiple templates in concert will need to be updated by hand. -The <a href="/pkg/text/template/#examples">examples</a> in +The <a href="/pkg/text/template/#pkg-examples">examples</a> in the documentation for <code>text/template</code> can provide guidance. </p> |