From df2c5d5429cb52abcf5933bef6c6ba701a65f5ab Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 28 Apr 2011 11:36:06 -0700 Subject: [PATCH] http: update cookie doc to reference new RFC 6265 R=rsc, r2 CC=golang-dev https://golang.org/cl/4442100 --- src/pkg/http/cookie.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/http/cookie.go b/src/pkg/http/cookie.go index 2c01826a12..cc51316438 100644 --- a/src/pkg/http/cookie.go +++ b/src/pkg/http/cookie.go @@ -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.