Skip to content

Commit 32aa402

Browse files
committed
Break compatibility with Go 1.3
This is essentially a revert of c4178e5.
1 parent d4f0d68 commit 32aa402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

suffixtree/suffixtree.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func New() *STree {
4141
// Update refreshes the suffix tree to by new data.
4242
func (t *STree) Update(data ...Token) {
4343
t.data = append(t.data, data...)
44-
for _ = range data {
44+
for range data {
4545
t.update()
4646
t.s, t.start = t.canonize(t.s, t.start, t.end)
4747
t.end++

0 commit comments

Comments
 (0)