]> Cypherpunks repositories - gostls13.git/commitdiff
net/http/cookiejar: fix typo
authorMichal Bohuslávek <mbohuslavek@gmail.com>
Wed, 21 Sep 2016 13:49:51 +0000 (14:49 +0100)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 21 Sep 2016 15:12:22 +0000 (15:12 +0000)
Change-Id: I6ea8650927e7946c6fd4659f400fd91ddaae68af
Reviewed-on: https://go-review.googlesource.com/29510
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/net/http/cookiejar/jar.go

index 0e0fac9286e47d4952c7968ad23e6763ff2528c7..ca0fdc57d75eda05b0819d0dc1ebb7e1428ade13 100644 (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)
 }