1
0
mirror of https://github.com/golang/go synced 2024-09-30 17:28:32 -06:00

net/http/cookiejar: fix typo

Change-Id: I6ea8650927e7946c6fd4659f400fd91ddaae68af
Reviewed-on: https://go-review.googlesource.com/29510
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Michal Bohuslávek 2016-09-21 14:49:51 +01:00 committed by Brad Fitzpatrick
parent c03925edd3
commit e69d63e807

View File

@ -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)
}