From: Brad Fitzpatrick Date: Sun, 1 May 2016 15:18:13 +0000 (+0000) Subject: net/http: fix typo in comment X-Git-Tag: go1.7beta1~374 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=24c05e7e695767a46ce6e48d2492c29ba7adffc4;p=gostls13.git net/http: fix typo in comment Change-Id: I753e62879a56582a9511e3f34fdeac929202efbf Reviewed-on: https://go-review.googlesource.com/22680 Reviewed-by: Ralph Corderoy Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/transport.go b/src/net/http/transport.go index 0f11676de6..c8bb34fa48 100644 --- a/src/net/http/transport.go +++ b/src/net/http/transport.go @@ -2009,7 +2009,7 @@ type connLRU struct { m map[*persistConn]*list.Element } -// addO adds pc to the head of the linked list. +// add adds pc to the head of the linked list. func (cl *connLRU) add(pc *persistConn) { if cl.ll == nil { cl.ll = list.New()