]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.2.html: happy eyeballs on net
authorMikio Hara <mikioh.mikioh@gmail.com>
Thu, 12 Sep 2013 06:12:40 +0000 (15:12 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Thu, 12 Sep 2013 06:12:40 +0000 (15:12 +0900)
Also fix trivial nits.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/13532046

doc/go1.2.html

index fc3947598fe37a51545e005300d979a37e7dbcd1..1fe616a6d3835ace5b3b8c72d984ed46e84b18d2 100644 (file)
@@ -633,11 +633,11 @@ if it is <code>nil</code>, Floyd-Steinberg error diffusion is used.
 </li>
 
 <li>
-The<a href="/pkg/io/#Copy"><code>Copy</code></a> method of the
+The <a href="/pkg/io/#Copy"><code>Copy</code></a> method of the
 <a href="/pkg/io/"><code>io</code></a> package now prioritizes its
 arguments differently.
 If one argument implements <a href="/pkg/io/#WriterTo"><code>WriterTo</code></a>
-and the other implements i<a href="/pkg/o/#ReaderFrom"><code>ReaderFrom</code></a>,
+and the other implements <a href="/pkg/io/#ReaderFrom"><code>ReaderFrom</code></a>,
 <a href="/pkg/io/#Copy"><code>Copy</code></a> will now invoke
 <a href="/pkg/io/#WriterTo"><code>WriterTo</code></a> to do the work,
 so that less intermediate buffering is required in general.
@@ -647,6 +647,13 @@ so that less intermediate buffering is required in general.
 net: TODO new build tag netgo for building a pure Go net package (CL 7100050).
 </li>
 
+<li>
+The <a href="/pkg/net/"><code>net</code></a> package adds a new field
+<code>DualStack</code> to the <a href="/pkg/net/#Dialer"><code>Dialer</code></a>
+struct for TCP connection setup using a dual IP stack as described in
+<a href="http://tools.ietf.org/html/rfc6555">RFC 6555</a>.
+</li>
+
 <li>
 net/http: TODO don't allow sending invalid cookie lines (CL 12204043).
 </li>