diff options
| author | Damien Neil <dneil@google.com> | 2026-03-24 13:31:16 -0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2026-03-26 08:19:52 -0700 |
| commit | 3206e141fbc8c4b92e4cabf546baafe0b6f29e54 (patch) | |
| tree | c75c90a5f62694cd959e5503340fbe90090ea140 | |
| parent | 82b95c14ec9ef72c725841d1984a4d70e060899e (diff) | |
| download | go-3206e141fbc8c4b92e4cabf546baafe0b6f29e54.tar.xz | |
[release-branch.go1.26] net/url: reattach package doc comment
Fixes #78330
For #78326
Change-Id: I70a411c33820f6498bec5f4e4a4ec7666a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/758880
Auto-Submit: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nicholas Husin <husin@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
(cherry picked from commit fb592a174727bd693f0e27d130aa60362ed5c6f0)
Reviewed-on: https://go-review.googlesource.com/c/go/+/758921
Auto-Submit: Dmitri Shuralyov <dmitshur@google.com>
| -rw-r--r-- | src/net/url/url.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/net/url/url.go b/src/net/url/url.go index 36d1820084..3e612c5261 100644 --- a/src/net/url/url.go +++ b/src/net/url/url.go @@ -2,14 +2,13 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:generate go run gen_encoding_table.go + // 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. - -//go:generate go run gen_encoding_table.go - package url // When sending changes, first search old issues for history on decisions. |
