Skip to content

Commit

Permalink
doc/go1.3.html: math/big's Int and Rat implement TextMarshaler, TextU…
Browse files Browse the repository at this point in the history
…nmarshaler

Update golang#8112

LGTM=r
R=r
CC=golang-codereviews
https://golang.org/cl/95640043
  • Loading branch information
rsc committed May 28, 2014
1 parent 6c10e64 commit c038c38
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions doc/go1.3.html
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,6 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>

<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
Expand All @@ -425,6 +418,22 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
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
Expand Down

0 comments on commit c038c38

Please sign in to comment.