From: Brad Fitzpatrick Date: Fri, 6 May 2016 18:33:39 +0000 (+0000) Subject: net/url: remove RFC 3986 mention in package comment X-Git-Tag: go1.7beta1~286 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=83676d694b64205e80c042ca7cf61f7ad4de6c62;p=gostls13.git net/url: remove RFC 3986 mention in package comment Change-Id: Ifd707a4bbfcb1721655b4fce2045f3b043e66818 Reviewed-on: https://go-review.googlesource.com/22859 Reviewed-by: Russ Cox --- diff --git a/src/net/url/url.go b/src/net/url/url.go index d9c8c49e94..30e9277937 100644 --- a/src/net/url/url.go +++ b/src/net/url/url.go @@ -3,9 +3,13 @@ // license that can be found in the LICENSE file. // Package url parses URLs and implements query escaping. -// See RFC 3986. package url +// See RFC 3986. This package generally follows RFC 3986, except where +// it deviates for compatibility reasons. When sending changes, first +// search old issues for history on decisions. Unit tests should also +// contain references to issue numbers with details. + import ( "bytes" "errors"