From: Ian Lance Taylor Date: Fri, 31 Jan 2020 03:03:39 +0000 (-0800) Subject: doc/go1.14: mention net/http.Header.Values, net/textproto.MIMEHeader.Values X-Git-Tag: go1.14rc1~30 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=debc52038b1ae8bab4d6d901d07e5f6f3397e029;p=gostls13.git doc/go1.14: mention net/http.Header.Values, net/textproto.MIMEHeader.Values These methods are new in Go 1.14. Updates #34799 Updates #36878 Change-Id: I063f5cb4638d7e0716e6ce2a8c3fffced51bbd34 Reviewed-on: https://go-review.googlesource.com/c/go/+/217129 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go1.14.html b/doc/go1.14.html index a7e7ac13b2..f66582f180 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -532,6 +532,17 @@ TODO +
net/http
+
+

+ The new Header + method Values + can be used to fetch all values associated with a + canonicalized key. +

+
+
+
net/http/httptest

@@ -543,6 +554,18 @@ TODO

+
net/textproto
+
+

+ The + new MIMEHeader + method Values + can be used to fetch all values associated with a canonicalized + key. +

+
+
+
plugin