mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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:
parent
ca8b627072
commit
24c05e7e69
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue