mirror of
https://github.com/golang/go
synced 2024-11-05 12:16:10 -07: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:
parent
c03925edd3
commit
e69d63e807
@ -107,7 +107,7 @@ type entry struct {
|
|||||||
seqNum uint64
|
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 {
|
func (e *entry) id() string {
|
||||||
return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name)
|
return fmt.Sprintf("%s;%s;%s", e.Domain, e.Path, e.Name)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user