]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.3.html: math/big's Int and Rat implement TextMarshaler, TextUnmarshaler
authorRuss Cox <rsc@golang.org>
Wed, 28 May 2014 19:48:35 +0000 (15:48 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 28 May 2014 19:48:35 +0000 (15:48 -0400)
Update #8112

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/95640043

doc/go1.3.html

index f4e055ae80a5e9c34fde4159262853b08ec96858..b22443ef06bd88933f345dda77cf20b270f8831b 100644 (file)
@@ -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
@@ -425,6 +418,22 @@ The formatted print functions of the <code>fmt</code> package now define <code>%
 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