From: Brad Fitzpatrick Date: Fri, 1 Mar 2013 00:58:14 +0000 (-0800) Subject: net/http: document net/http/cookiejar on CookieJar X-Git-Tag: go1.1rc2~761 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=523cb45c9d46dc7765c7626303e8a80210bbc5bc;p=gostls13.git net/http: document net/http/cookiejar on CookieJar R=golang-dev, nigeltao, adg CC=golang-dev https://golang.org/cl/7444048 --- diff --git a/src/pkg/net/http/jar.go b/src/pkg/net/http/jar.go index 35eee682f9..5c3de0dad2 100644 --- a/src/pkg/net/http/jar.go +++ b/src/pkg/net/http/jar.go @@ -12,6 +12,8 @@ import ( // // Implementations of CookieJar must be safe for concurrent use by multiple // goroutines. +// +// The net/http/cookiejar package provides a CookieJar implementation. type CookieJar interface { // SetCookies handles the receipt of the cookies in a reply for the // given URL. It may or may not choose to save the cookies, depending