Commit e9895d92 authored by Caleb Spare's avatar Caleb Spare Committed by Brad Fitzpatrick

container/list: Add missing period to doc comment for Front

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/38540046
parent e87b1710
......@@ -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
......
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