From cf694aac346fefc0383ebf2ecb83b365c0357920 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 9 Oct 2013 07:05:43 +1100 Subject: [PATCH] doc: fix a few broken links R=golang-dev, r CC=golang-dev https://golang.org/cl/14494044 --- doc/code.html | 2 +- doc/go1.1.html | 4 ++-- doc/go1.2.html | 14 +++++++------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/code.html b/doc/code.html index 2bf50601e4..f9aa6ac171 100644 --- a/doc/code.html +++ b/doc/code.html @@ -576,7 +576,7 @@ provide lists of external Go projects.

For more information on using remote repositories with the go tool, see -go help remote. +go help importpath.

diff --git a/doc/go1.1.html b/doc/go1.1.html index a68664954a..87d5f5c876 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -129,7 +129,7 @@ only an infinite "for" loop.

In Go 1.1, the rule about final "return" statements is more permissive. It introduces the concept of a -terminating statement, +terminating statement, a statement that is guaranteed to be the last one a function executes. Examples include "for" loops with no condition and "if-else" @@ -191,7 +191,7 @@ more than 2 billion elements on 64-bit platforms. Updating: Most programs will be unaffected by this change. Because Go does not allow implicit conversions between distinct -numeric types, +numeric types, no programs will stop compiling due to this change. However, programs that contain implicit assumptions that int is only 32 bits may change behavior. diff --git a/doc/go1.2.html b/doc/go1.2.html index 4b8efb66c1..9f96836ac1 100644 --- a/doc/go1.2.html +++ b/doc/go1.2.html @@ -580,8 +580,8 @@ The bufio package adds Reset methods to Reader and Writer. -These methods allow the Readers -and Writers +These methods allow the Readers +and Writers to be re-used on new input and output readers and writers, saving allocation overhead. @@ -593,7 +593,7 @@ can now decompress concatenated archives.

  • The compress/flate -package adds a Reset +package adds a Reset method on the Writer, to make it possible to reduce allocation when, for instance, constructing an archive to hold multiple compressed files. @@ -621,9 +621,9 @@ method to provide a more efficient way to update an item's position in the heap.
  • The container/list package -adds the MoveBefore +adds the MoveBefore and -MoveAfter +MoveAfter methods, which implement the obvious rearrangement.
  • @@ -745,7 +745,7 @@ The default is false, representing the usual two-index form.
  • The go/build package adds -the AllTags field +the AllTags field to the Package type, to make it easier to process build tags.
  • @@ -910,7 +910,7 @@ in agreement with that of other printing functions such as "printf". In the time package, the Parse function and -Format +Format method now handle time zone offsets with seconds, such as in the historical date "1871-01-01T05:33:02+00:34:08". -- 2.48.1