net/url: document referenced RFCs

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>
This commit is contained in:
Sean Liao 2025-03-22 01:15:22 +00:00 committed by Gopher Robot
parent d2d1fd68b6
commit 7372b64425
1 changed files with 6 additions and 4 deletions

View 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"