net/http: fix typo in comment

Change-Id: I753e62879a56582a9511e3f34fdeac929202efbf
Reviewed-on: https://go-review.googlesource.com/22680
Reviewed-by: Ralph Corderoy <ralph@inputplus.co.uk>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Brad Fitzpatrick 2016-05-01 15:18:13 +00:00
parent ca8b627072
commit 24c05e7e69

View file

@ -2009,7 +2009,7 @@ type connLRU struct {
m map[*persistConn]*list.Element 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) { func (cl *connLRU) add(pc *persistConn) {
if cl.ll == nil { if cl.ll == nil {
cl.ll = list.New() cl.ll = list.New()