]> Cypherpunks repositories - gostls13.git/commitdiff
net/url: document referenced RFCs
authorSean Liao <sean@liao.dev>
Sat, 22 Mar 2025 01:15:22 +0000 (01:15 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 24 Mar 2025 15:34:32 +0000 (08:34 -0700)
Fixes #30611

Change-Id: If933c2a7e63d89402d2034618057ad546cf9641b
Reviewed-on: https://go-review.googlesource.com/c/go/+/660077
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Damien Neil <dneil@google.com>
src/net/url/url.go

index 3acde9fb0f3334c2386e659a3b1399edd1a9aeae..8786d9655b1b502407215c6adfe2354ece669dbd 100644 (file)
@@ -3,12 +3,14 @@
 // license that can be found in the LICENSE file.
 
 // Package url parses URLs and implements query escaping.
+//
+// See RFC 3986. This package generally follows RFC 3986, except where
+// it deviates for compatibility reasons.
+// RFC 6874 followed for IPv6 zone literals.
 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.
+// When sending changes, first  search old issues for history on decisions.
+// Unit tests should also contain references to issue numbers with details.
 
 import (
        "errors"