diff --git a/doc/go1.5.html b/doc/go1.5.html index 56adaa1558..79f5b8c1d2 100644 --- a/doc/go1.5.html +++ b/doc/go1.5.html @@ -1071,11 +1071,14 @@ package that implements the quoted-printable encoding defined by RFC 2045.
net package
-adds RFC-6555-compliant dialing for sites with multiple TCP
-addresses listed in DNS.
-A new DualStack field
-in Dialer enables the feature.
+The net package will now
+Dial hostnames by trying each
+IP address in order until one succeeds.
+The Dialer.DualStack
+mode now implements Happy Eyeballs
+(RFC 6555) by giving the
+first address family a 300ms head start; this value can be overridden by
+the new Dialer.FallbackDelay.