aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-05-28 15:48:35 -0400
committerRuss Cox <rsc@golang.org>2014-05-28 15:48:35 -0400
commitc038c38ac1240202cfaaec21f917483869df31a9 (patch)
tree2100b4bc9fb7a5b7cbae0780c2862276e9d45ade
parent6c10e64a906039678f5dffda8b453005ffcdb92e (diff)
downloadgo-c038c38ac1240202cfaaec21f917483869df31a9.tar.gz
go-c038c38ac1240202cfaaec21f917483869df31a9.zip
doc/go1.3.html: math/big's Int and Rat implement TextMarshaler, TextUnmarshaler
Update #8112 LGTM=r R=r CC=golang-codereviews https://golang.org/cl/95640043
-rw-r--r--doc/go1.3.html23
1 files changed, 16 insertions, 7 deletions
diff --git a/doc/go1.3.html b/doc/go1.3.html
index f4e055ae80..b22443ef06 100644
--- a/doc/go1.3.html
+++ b/doc/go1.3.html
@@ -398,13 +398,6 @@ See the relevant package documentation for more information about each change.
<ul>
-<li>
-The complex power function, <a href="/pkg/math/cmplx/#Pow"><code>Pow</code></a>,
-now specifies the behavior when the first argument is zero.
-It was undefined before.
-The details are in the <a href="/pkg/math/cmplx/#Pow">documentation for the function</a>.
-</li>
-
<li> In the <a href="/pkg/crypto/tls/"><code>crypto/tls</code></a> package,
a new <a href="/pkg/crypto/tls/#DialWithDialer"><code>DialWithDialer</code></a>
function lets one establish a TLS connection using an existing dialer, making it easier
@@ -426,6 +419,22 @@ as a synonym for <code>%f</code> when printing floating-point values.
</li>
<li>
+The <a href="/pkg/math/big/"><code>math/big</code></a> package's
+<a href="/pkg/math/big/#Int"><code>Int</code></a> and
+<a href="/pkg/math/big/#Rat"><code>Rat</code></a> types
+now implement
+<a href="/pkg/encoding/#TextMarshaler"><code>encoding.TextMarshaler</code></a> and
+<a href="/pkg/encoding/#TextUnmarshaler"><code>encoding.TextUnmarshaler</code></a>.
+</li>
+
+<li>
+The complex power function, <a href="/pkg/math/cmplx/#Pow"><code>Pow</code></a>,
+now specifies the behavior when the first argument is zero.
+It was undefined before.
+The details are in the <a href="/pkg/math/cmplx/#Pow">documentation for the function</a>.
+</li>
+
+<li>
The <a href="/pkg/net/http/"><code>net/http</code></a> package now exposes the
properties of a TLS connection used to make a client request in the new
<a href="/pkg/net/http/#Response"><code>Response.TLS</code></a> field.