summaryrefslogtreecommitdiff
path: root/ds/arraylist.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2020-07-17 10:01:52 +0100
committerPaul Buetow <paul@buetow.org>2020-07-17 10:01:52 +0100
commitdbd6388393282672859c789b0e1b58d4f8fd0d0b (patch)
tree252fe3f8cac56dc6f2934dc91634679a445ee593 /ds/arraylist.go
parente858efc16960b86175d655add938acd3f1edd13e (diff)
refactor
Diffstat (limited to 'ds/arraylist.go')
-rw-r--r--ds/arraylist.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ds/arraylist.go b/ds/arraylist.go
index 65c42ef..c2ada86 100644
--- a/ds/arraylist.go
+++ b/ds/arraylist.go
@@ -5,7 +5,7 @@ import (
"strings"
)
-type ArrayList []Comparer
+type ArrayList []Elem
func (a ArrayList) FirstN(n int) string {
var sb strings.Builder