Commit e69d63e8 authored by Michal Bohuslávek's avatar Michal Bohuslávek Committed by Brad Fitzpatrick

net/http/cookiejar: fix typo

Change-Id: I6ea8650927e7946c6fd4659f400fd91ddaae68af
Reviewed-on: https://go-review.googlesource.com/29510Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent c03925ed
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment