Commit e0f338cc authored by Rob Pike's avatar Rob Pike

doc/go1.1.html: document os/signal.Stop

Also fix the sort order of the laundry list.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8325044
parent ca24f9ec
...@@ -749,6 +749,11 @@ The undocumented and only partially implemented "noescape" feature of the ...@@ -749,6 +749,11 @@ The undocumented and only partially implemented "noescape" feature of the
package has been removed; programs that depend on it will break. package has been removed; programs that depend on it will break.
</li> </li>
<li>
The <a href="/pkg/image/jpeg/"><code>image/jpeg</code></a> package now
reads progressive JPEG files and handles a few more subsampling configurations.
</li>
<li> <li>
The <a href="/pkg/io/"><code>io</code></a> package now exports the The <a href="/pkg/io/"><code>io</code></a> package now exports the
<a href="/pkg/io/#ByteWriter"><code>io.ByteWriter</code></a> interface to capture the common <a href="/pkg/io/#ByteWriter"><code>io.ByteWriter</code></a> interface to capture the common
...@@ -901,8 +906,9 @@ The new method <a href="/pkg/os/#FileMode.IsRegular"><code>os.FileMode.IsRegular ...@@ -901,8 +906,9 @@ The new method <a href="/pkg/os/#FileMode.IsRegular"><code>os.FileMode.IsRegular
</li> </li>
<li> <li>
The <a href="/pkg/image/jpeg/"><code>image/jpeg</code></a> package now The <a href="/pkg/os/signal/"><code>os/signal</code></a> package has a new function,
reads progressive JPEG files and handles a few more subsampling configurations. <a href="/pkg/os/signal/#Stop"><code>Stop</code></a>, which stops the package delivering
any further signals to the channel.
</li> </li>
<li> <li>
...@@ -975,7 +981,6 @@ In the <a href="/pkg/text/template/"><code>text/template</code></a> ...@@ -975,7 +981,6 @@ In the <a href="/pkg/text/template/"><code>text/template</code></a>
and and
<a href="/pkg/html/template/"><code>html/template</code></a> packages, <a href="/pkg/html/template/"><code>html/template</code></a> packages,
templates can now use parentheses to group the elements of pipelines, simplifying the construction of complex pipelines. templates can now use parentheses to group the elements of pipelines, simplifying the construction of complex pipelines.
TODO: Link to example.
Also, as part of the new parser, the Also, as part of the new parser, the
<a href="/pkg/text/template/parse/#Node"><code>Node</code></a> interface got two new methods to provide <a href="/pkg/text/template/parse/#Node"><code>Node</code></a> interface got two new methods to provide
better error reporting. better error reporting.
...@@ -989,12 +994,12 @@ packages and there are safeguards to guarantee that. ...@@ -989,12 +994,12 @@ packages and there are safeguards to guarantee that.
</li> </li>
<li> <li>
In the <a href="/pkg/unicode/utf8/"><code>unicode/utf8</code></a> package, The implementation of the <a href="/pkg/unicode/"><code>unicode</code></a> package has been updated to Unicode version 6.2.0.
the new function <a href="/pkg/unicode/utf8/#ValidRune"><code>ValidRune</code></a> reports whether the rune is a valid Unicode code point.
To be valid, a rune must be in range and not be a surrogate half.
</li> </li>
<li> <li>
The implementation of the <a href="/pkg/unicode/"><code>unicode</code></a> package has been updated to Unicode version 6.2.0. In the <a href="/pkg/unicode/utf8/"><code>unicode/utf8</code></a> package,
the new function <a href="/pkg/unicode/utf8/#ValidRune"><code>ValidRune</code></a> reports whether the rune is a valid Unicode code point.
To be valid, a rune must be in range and not be a surrogate half.
</li> </li>
</ul> </ul>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment