From 75e16f5127eb6affb4b473c93565a8d29a802e51 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 15 Dec 2020 17:48:38 +0100 Subject: [PATCH] doc/go1.16: add link to reflect.StructTag For #40700. Change-Id: I67dd55b435304e428929c9a54b8881f9b78efdfb Reviewed-on: https://go-review.googlesource.com/c/go/+/278392 Trust: Tobias Klauser Reviewed-by: Ian Lance Taylor --- doc/go1.16.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/go1.16.html b/doc/go1.16.html index ffe274f3bd9198..b3d905c168a731 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -865,9 +865,10 @@

Minor changes to the library

reflect

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