aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2021-02-13 02:44:11 +0000
committerDmitri Shuralyov <dmitshur@golang.org>2021-02-16 16:26:11 +0000
commit6530f2617f3100d8f1036afc5cb9b30b36628aaa (patch)
tree62c40af3071f819e9be696ef8ac58e7d1dda9192
parent353e111455d6b81fdce0a6d3190baba6adca3372 (diff)
downloadgo-6530f2617f3100d8f1036afc5cb9b30b36628aaa.tar.gz
go-6530f2617f3100d8f1036afc5cb9b30b36628aaa.zip
doc/go1.16: remove draft notice
Fixes #40700. Change-Id: I99ed479d1bb3cdf469c0209720c728276182a7a9 Reviewed-on: https://go-review.googlesource.com/c/go/+/291809 Reviewed-by: Alexander Rakoczy <alex@golang.org> Reviewed-by: Carlos Amedee <carlos@golang.org> Trust: Alexander Rakoczy <alex@golang.org> Run-TryBot: Alexander Rakoczy <alex@golang.org> TryBot-Result: Go Bot <gobot@golang.org>
-rw-r--r--doc/go1.16.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/go1.16.html b/doc/go1.16.html
index 08f5d5431e0..0beb62d160e 100644
--- a/doc/go1.16.html
+++ b/doc/go1.16.html
@@ -14,13 +14,13 @@ Do not send CLs removing the interior tags from such phrases.
main ul li { margin: 0.5em 0; }
</style>
-<h2 id="introduction">DRAFT RELEASE NOTES — Introduction to Go 1.16</h2>
+<h2 id="introduction">Introduction to Go 1.16</h2>
<p>
- <strong>
- Go 1.16 is not yet released. These are work-in-progress
- release notes. Go 1.16 is expected to be released in February 2021.
- </strong>
+ The latest Go release, version 1.16, arrives six months after <a href="/doc/go1.15">Go 1.15</a>.
+ Most of its changes are in the implementation of the toolchain, runtime, and libraries.
+ As always, the release maintains the Go 1 <a href="/doc/go1compat.html">promise of compatibility</a>.
+ We expect almost all Go programs to continue to compile and run as before.
</p>
<h2 id="language">Changes to the language</h2>
@@ -505,7 +505,7 @@ func TestFoo(t *testing.T) {
On the consumer side,
the new <a href="/pkg/net/http/#FS"><code>http.FS</code></a>
function converts an <code>fs.FS</code> to an
- <a href="/pkg/net/http/#Handler"><code>http.Handler</code></a>.
+ <a href="/pkg/net/http/#FileSystem"><code>http.FileSystem</code></a>.
Also, the <a href="/pkg/html/template/"><code>html/template</code></a>
and <a href="/pkg/text/template/"><code>text/template</code></a>
packages’ <a href="/pkg/html/template/#ParseFS"><code>ParseFS</code></a>
@@ -952,7 +952,7 @@ func TestFoo(t *testing.T) {
<p><!-- CL 243939 -->
The new <a href="/pkg/net/http/#FS"><code>http.FS</code></a>
function converts an <a href="/pkg/io/fs/#FS"><code>fs.FS</code></a>
- to an <a href="/pkg/net/http/#Handler"><code>http.Handler</code></a>.
+ to an <a href="/pkg/net/http/#FileSystem"><code>http.FileSystem</code></a>.
</p>
</dd>
</dl><!-- net/http -->