Skip to content

Commit 83676d6

Browse files
committed
net/url: remove RFC 3986 mention in package comment
Change-Id: Ifd707a4bbfcb1721655b4fce2045f3b043e66818 Reviewed-on: https://go-review.googlesource.com/22859 Reviewed-by: Russ Cox <[email protected]>
1 parent 7c5c664 commit 83676d6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/net/url/url.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
// license that can be found in the LICENSE file.
44

55
// Package url parses URLs and implements query escaping.
6-
// See RFC 3986.
76
package url
87

8+
// See RFC 3986. This package generally follows RFC 3986, except where
9+
// it deviates for compatibility reasons. When sending changes, first
10+
// search old issues for history on decisions. Unit tests should also
11+
// contain references to issue numbers with details.
12+
913
import (
1014
"bytes"
1115
"errors"

0 commit comments

Comments
 (0)