From: Rob Pike Date: Thu, 8 Aug 2013 02:41:19 +0000 (+1000) Subject: container/list: fix typo in comment X-Git-Tag: go1.2rc2~732 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=077989cf94cabfddf3cf05b7a6a071ea0c59a345;p=gostls13.git container/list: fix typo in comment Fixes #6058. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12643043 --- diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index 53e839ed65..34e6b9a50d 100644 --- a/src/pkg/container/list/list.go +++ b/src/pkg/container/list/list.go @@ -127,7 +127,7 @@ func (l *List) Remove(e *Element) interface{} { return e.Value } -// Pushfront inserts a new element e with value v at the front of list l and returns e. +// PushFront inserts a new element e with value v at the front of list l and returns e. func (l *List) PushFront(v interface{}) *Element { l.lazyInit() return l.insertValue(v, &l.root)