From: Caleb Spare Date: Tue, 17 Dec 2013 22:21:11 +0000 (-0800) Subject: container/list: Add missing period to doc comment for Front X-Git-Tag: go1.3beta1~1198 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e9895d92e0b55b2abede9779cb3c8443affb3d7b;p=gostls13.git container/list: Add missing period to doc comment for Front R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/38540046 --- diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index ed2d15a457..1cc7e311bb 100644 --- a/src/pkg/container/list/list.go +++ b/src/pkg/container/list/list.go @@ -65,7 +65,7 @@ func New() *List { return new(List).Init() } // The complexity is O(1). func (l *List) Len() int { return l.len } -// Front returns the first element of list l or nil +// Front returns the first element of list l or nil. func (l *List) Front() *Element { if l.len == 0 { return nil