From 83676d694b64205e80c042ca7cf61f7ad4de6c62 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 6 May 2016 18:33:39 +0000 Subject: [PATCH] net/url: remove RFC 3986 mention in package comment Change-Id: Ifd707a4bbfcb1721655b4fce2045f3b043e66818 Reviewed-on: https://go-review.googlesource.com/22859 Reviewed-by: Russ Cox --- src/net/url/url.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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" -- 2.48.1