]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: fix typo in comment
authorBrad Fitzpatrick <bradfitz@golang.org>
Sun, 1 May 2016 15:18:13 +0000 (15:18 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 1 May 2016 18:34:22 +0000 (18:34 +0000)
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>
src/net/http/transport.go

index 0f11676de6f4231424694c7d0f21eb66de340d1c..c8bb34fa486dfc391a1c3716607e1cf3ab21f008 100644 (file)
@@ -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()