]> Cypherpunks repositories - gostls13.git/commitdiff
http: fix typo in URL.String doc comment.
authorDavid Symonds <dsymonds@golang.org>
Fri, 6 May 2011 17:00:50 +0000 (10:00 -0700)
committerDavid Symonds <dsymonds@golang.org>
Fri, 6 May 2011 17:00:50 +0000 (10:00 -0700)
R=adg
CC=golang-dev
https://golang.org/cl/4485046

src/pkg/http/url.go

index 0fc0cb2d76ee2703ca244f890879e6b33373dbef..d7ee14ee84ae3702b79e4615f7e3a722bd39c11a 100644 (file)
@@ -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 != "" {