From: David Symonds Date: Fri, 6 May 2011 17:00:50 +0000 (-0700) Subject: http: fix typo in URL.String doc comment. X-Git-Tag: weekly.2011-05-22~137 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=606e12f9bfb1b2a6d6f5e7da73bc69c9569329e2;p=gostls13.git http: fix typo in URL.String doc comment. R=adg CC=golang-dev https://golang.org/cl/4485046 --- diff --git a/src/pkg/http/url.go b/src/pkg/http/url.go index 0fc0cb2d76..d7ee14ee84 100644 --- a/src/pkg/http/url.go +++ b/src/pkg/http/url.go @@ -449,7 +449,7 @@ func ParseURLReference(rawurlref string) (url *URL, err os.Error) { // // There are redundant fields stored in the URL structure: // the String method consults Scheme, Path, Host, RawUserinfo, -// RawQuery, and Fragment, but not Raw, RawPath or Authority. +// RawQuery, and Fragment, but not Raw, RawPath or RawAuthority. func (url *URL) String() string { result := "" if url.Scheme != "" {