Commit dbf59dad authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

net/url: update docs to match renamed receiver

The receiver was renamed 6 years ago in https://golang.org/cl/5674065
but the docs weren't updated to match.

Change-Id: I5e72cedc0e0f067382545d272f48a9c7dfb5a9b7
Reviewed-on: https://go-review.googlesource.com/104116Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 740a209a
...@@ -952,7 +952,7 @@ func (u *URL) Parse(ref string) (*URL, error) { ...@@ -952,7 +952,7 @@ func (u *URL) Parse(ref string) (*URL, error) {
} }
// ResolveReference resolves a URI reference to an absolute URI from // ResolveReference resolves a URI reference to an absolute URI from
// an absolute base URI, per RFC 3986 Section 5.2. The URI reference // an absolute base URI u, per RFC 3986 Section 5.2. The URI reference
// may be relative or absolute. ResolveReference always returns a new // may be relative or absolute. ResolveReference always returns a new
// URL instance, even if the returned URL is identical to either the // URL instance, even if the returned URL is identical to either the
// base or reference. If ref is an absolute URL, then ResolveReference // base or reference. If ref is an absolute URL, then ResolveReference
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment