diff --git a/doc/go1.20.html b/doc/go1.20.html index e742be3a78..028696c5b3 100644 --- a/doc/go1.20.html +++ b/doc/go1.20.html @@ -30,7 +30,7 @@ Do not send CLs removing the interior tags from such phrases.
- Go 1.17 added conversions from slice to an array pointer.
+ Go 1.17 added conversions from slice to an array pointer.
Go 1.20 extends this to allow conversions from a slice to an array:
given a slice x, [4]byte(x) can now be written
instead of *(*[4]byte)(x).