]> Cypherpunks repositories - gostls13.git/commitdiff
net/url: remove RFC 3986 mention in package comment
authorBrad Fitzpatrick <bradfitz@golang.org>
Fri, 6 May 2016 18:33:39 +0000 (18:33 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 6 May 2016 19:27:45 +0000 (19:27 +0000)
Change-Id: Ifd707a4bbfcb1721655b4fce2045f3b043e66818
Reviewed-on: https://go-review.googlesource.com/22859
Reviewed-by: Russ Cox <rsc@golang.org>
src/net/url/url.go

index d9c8c49e94a48393047f3dfa94070b65ebc66f2a..30e92779370393e4f425a379c18225ef8c971f63 100644 (file)
@@ -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"