From: Taj Khattra Date: Sun, 28 Oct 2012 10:16:50 +0000 (+1100) Subject: container/list: fix typo X-Git-Tag: go1.1rc2~2051 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1158c6b9c6facc396cfbcbd2fbedd860cb66fef7;p=gostls13.git container/list: fix typo R=golang-dev, fullung, dave, minux.ma CC=golang-dev https://golang.org/cl/6682046 --- 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()