From: Brad Fitzpatrick Date: Thu, 28 Jan 2016 20:53:41 +0000 (+0000) Subject: doc: don't imply that the new HTTP status 451 is from RFC 6585 X-Git-Tag: go1.6rc2~3^2~10 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6d61725c36a36eb9b5a5fddfeb3525e52fbe9762;p=gostls13.git doc: don't imply that the new HTTP status 451 is from RFC 6585 From twitter bug report: https://twitter.com/ox/status/692737249411207168 Change-Id: Ic5f4eeb00d705217542db558edc25e206f6b640d Reviewed-on: https://go-review.googlesource.com/19050 Reviewed-by: Russ Cox --- diff --git a/doc/go1.6.html b/doc/go1.6.html index 46a8f65db3..92998ad46c 100644 --- a/doc/go1.6.html +++ b/doc/go1.6.html @@ -752,13 +752,13 @@ Third, the Expect: 100-continue header (see Transport.ExpectContinueTimeout). Fourth, there are -five new error codes from RFC 6585: +five new error codes: StatusPreconditionRequired (428), StatusTooManyRequests (429), -StatusRequestHeaderFieldsTooLarge (431), -StatusUnavailableForLegalReasons (451)), -and -StatusNetworkAuthenticationRequired (511). +StatusRequestHeaderFieldsTooLarge (431), and +StatusNetworkAuthenticationRequired (511) from RFC 6585, +as well as the recently-approved +StatusUnavailableForLegalReasons (451). Fifth, the implementation and documentation of CloseNotifier has been substantially changed.