From: Rob Pike Date: Wed, 3 Apr 2013 17:59:36 +0000 (-0700) Subject: doc/go1.1.html: document os/signal.Stop X-Git-Tag: go1.1rc2~201 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e0f338cca5085dd860358eb8c2091de335e6a13a;p=gostls13.git 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 --- diff --git a/doc/go1.1.html b/doc/go1.1.html index 578d6e901c..f797199f66 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -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. +
  • +The image/jpeg package now +reads progressive JPEG files and handles a few more subsampling configurations. +
  • +
  • The io package now exports the io.ByteWriter interface to capture the common @@ -901,8 +906,9 @@ The new method os.FileMode.IsRegular
  • -The image/jpeg package now -reads progressive JPEG files and handles a few more subsampling configurations. +The os/signal package has a new function, +Stop, which stops the package delivering +any further signals to the channel.
  • @@ -975,7 +981,6 @@ In the text/template and html/template packages, 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 Node interface got two new methods to provide better error reporting. @@ -989,12 +994,12 @@ packages and there are safeguards to guarantee that.
  • -In the unicode/utf8 package, -the new function ValidRune 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. +The implementation of the unicode package has been updated to Unicode version 6.2.0.
  • -The implementation of the unicode package has been updated to Unicode version 6.2.0. +In the unicode/utf8 package, +the new function ValidRune 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.