From 24c05e7e695767a46ce6e48d2492c29ba7adffc4 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sun, 1 May 2016 15:18:13 +0000 Subject: [PATCH] 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 --- src/net/http/transport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.48.1