From: Michal Bohuslávek Date: Wed, 21 Sep 2016 13:49:51 +0000 (+0100) Subject: net/http/cookiejar: fix typo X-Git-Tag: go1.8beta1~1208 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e69d63e807b7322e3a7d6c8ad83c251c9f46c9ca;p=gostls13.git net/http/cookiejar: fix typo Change-Id: I6ea8650927e7946c6fd4659f400fd91ddaae68af Reviewed-on: https://go-review.googlesource.com/29510 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/cookiejar/jar.go b/src/net/http/cookiejar/jar.go index 0e0fac9286..ca0fdc57d7 100644 --- a/src/net/http/cookiejar/jar.go +++ b/src/net/http/cookiejar/jar.go @@ -107,7 +107,7 @@ type entry struct { seqNum uint64 } -// Id returns the domain;path;name triple of e as an id. +// id returns the domain;path;name triple of e as an id. func (e *entry) id() string { return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name) }