From 1158c6b9c6facc396cfbcbd2fbedd860cb66fef7 Mon Sep 17 00:00:00 2001 From: Taj Khattra Date: Sun, 28 Oct 2012 21:16:50 +1100 Subject: [PATCH] container/list: fix typo R=golang-dev, fullung, dave, minux.ma CC=golang-dev https://golang.org/cl/6682046 --- src/pkg/container/list/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index e29e3a79ac..69818c3b75 100644 --- a/src/pkg/container/list/list.go +++ b/src/pkg/container/list/list.go @@ -176,7 +176,7 @@ func (l *List) MoveToBack(e *Element) { l.insert(l.remove(e), l.root.prev) } -// PuchBackList inserts a copy of an other list at the back of list l. +// PushBackList inserts a copy of an other list at the back of list l. // The lists l and other may be the same. func (l *List) PushBackList(other *List) { l.lazyInit() -- 2.48.1