1
0
mirror of https://github.com/golang/go synced 2024-11-19 17:44:43 -07:00

container/list: fix typo

R=golang-dev, fullung, dave, minux.ma
CC=golang-dev
https://golang.org/cl/6682046
This commit is contained in:
Taj Khattra 2012-10-28 21:16:50 +11:00 committed by Nigel Tao
parent 3c808164ad
commit 1158c6b9c6

View File

@ -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()