From c9c3be517c6483014392b8d4f7e8c7712c76d871 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 11 Jun 2020 18:43:35 +0800 Subject: [PATCH] fix issue in example of package glist --- container/glist/glist_example_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/container/glist/glist_example_test.go b/container/glist/glist_example_test.go index 1931f3e51..af1118c89 100644 --- a/container/glist/glist_example_test.go +++ b/container/glist/glist_example_test.go @@ -121,9 +121,6 @@ func ExampleList_PopBack() { // Output: // 9 - // [8 7] - // 1 - // [2 3] } func ExampleList_PopBacks() { l := glist.NewFrom(g.Slice{1, 2, 3, 4, 5, 6, 7, 8, 9})