]> Cypherpunks repositories - gostls13.git/commitdiff
http: update cookie doc to reference new RFC 6265
authorBrad Fitzpatrick <bradfitz@golang.org>
Thu, 28 Apr 2011 18:36:06 +0000 (11:36 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 28 Apr 2011 18:36:06 +0000 (11:36 -0700)
R=rsc, r2
CC=golang-dev
https://golang.org/cl/4442100

src/pkg/http/cookie.go

index 2c01826a12c3b4f7d95453f29878ce4a3dd96153..cc51316438aa8377630e002731b7e1c192e221ac 100644 (file)
@@ -15,9 +15,9 @@ import (
        "time"
 )
 
-// This implementation is done according to IETF draft-ietf-httpstate-cookie-23, found at
+// This implementation is done according to RFC 6265:
 //
-//    http://tools.ietf.org/html/draft-ietf-httpstate-cookie-23
+//    http://tools.ietf.org/html/rfc6265
 
 // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
 // HTTP response or the Cookie header of an HTTP request.