aboutsummaryrefslogtreecommitdiff
path: root/doc/go1.17.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/go1.17.html')
-rw-r--r--doc/go1.17.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/go1.17.html b/doc/go1.17.html
index 22896c8c27..66b4f48b61 100644
--- a/doc/go1.17.html
+++ b/doc/go1.17.html
@@ -401,7 +401,7 @@ func Foo() bool {
<p><!-- golang.org/issue/40724 -->
Go 1.17 implements a new way of passing function arguments and results using
- registers instead of the stack. This work is enabled for Linux, MacOS, and
+ registers instead of the stack. This work is enabled for Linux, macOS, and
Windows on the 64-bit x86 architecture (the <code>linux/amd64</code>,
<code>darwin/amd64</code>, <code>windows/amd64</code> ports). For a
representative set of Go packages and programs, benchmarking has shown
@@ -811,8 +811,8 @@ func Foo() bool {
<p><!-- CL 311129 -->
The concrete image types (<code>RGBA</code>, <code>Gray16</code> and so on)
now implement a new <a href="/pkg/image/#RGBA64Image"><code>RGBA64Image</code></a>
- interface. Those concrete types, other than the chroma-subsampling
- related <code>YCbCr</code> and <code>NYCbCrA</code>, also now implement
+ interface. The concrete types that previously implemented
+ <a href="/pkg/image/draw/#Image"><code>draw.Image</code></a> now also implement
<a href="/pkg/image/draw/#RGBA64Image"><code>draw.RGBA64Image</code></a>, a
new interface in the <code>image/draw</code> package.
</p>
@@ -993,7 +993,7 @@ func Foo() bool {
is no longer sufficient to guarantee that a call to
<a href="/pkg/reflect/#Value.Convert"><code>Value.Convert</code></a> will not panic.
It may panic when converting `[]T` to `*[N]T` if the slice's length is less than N.
- See the language changes section above.
+ See the <a href="#language">language changes</a> section above.
</p>
</dd>
</dl><!-- reflect -->