Commit 1158c6b9 authored by Taj Khattra's avatar Taj Khattra Committed by Nigel Tao

container/list: fix typo

R=golang-dev, fullung, dave, minux.ma
CC=golang-dev
https://golang.org/cl/6682046
parent 3c808164
......@@ -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()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment