From: Alberto Donizetti Date: Tue, 1 Dec 2020 13:12:22 +0000 (+0100) Subject: doc/go1.16: add reflect changes to release notes X-Git-Tag: go1.16beta1~89 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b67b7ddabcc8e1a4b5819f03d47777bf5ddedbcc;p=gostls13.git doc/go1.16: add reflect changes to release notes For #40700 Fixes #42911 Change-Id: I1bd729f72ae3a29d190ffc34a40c3d0b59ebbbb4 Reviewed-on: https://go-review.googlesource.com/c/go/+/274474 Trust: Alberto Donizetti Reviewed-by: Dmitri Shuralyov --- diff --git a/doc/go1.16.html b/doc/go1.16.html index eaa8e46572..1c22c21758 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -783,8 +783,10 @@ Do not send CLs removing the interior tags from such phrases.
reflect
-

- TODO: https://golang.org/cl/248341: support multiple keys in struct tags +

+ StructTag now allows multiple space-separated keys + in key:value pairs, as in `json xml:"field1"` + (equivalent to `json:"field1" xml:"field1"`).