From 8a39ee361feb9bf46d728ff1ba4f07ca1d9610b1 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 19 Jun 2014 09:22:53 +0200 Subject: Imported Upstream version 1.3 --- src/pkg/container/list/example_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/container/list/example_test.go') diff --git a/src/pkg/container/list/example_test.go b/src/pkg/container/list/example_test.go index 7361212d7..362178401 100644 --- a/src/pkg/container/list/example_test.go +++ b/src/pkg/container/list/example_test.go @@ -17,7 +17,7 @@ func Example() { l.InsertBefore(3, e4) l.InsertAfter(2, e1) - // Iterate through list and and print its contents. + // Iterate through list and print its contents. for e := l.Front(); e != nil; e = e.Next() { fmt.Println(e.Value) } -- cgit v1.2.3