From c3421afa22c6123d7cfc4d5f9c527a37b764ef73 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Fri, 17 Aug 2018 19:32:01 -0400 Subject: [PATCH] go fmt --- bitset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitset.go b/bitset.go index 6cb024a..f7f0eef 100644 --- a/bitset.go +++ b/bitset.go @@ -246,7 +246,7 @@ func (b *BitSet) NextSet(i uint) (uint, bool) { // including possibly the current index and up to cap(buffer). // If the returned slice has len zero, then no more set bits were found // -// buffer := make([]uint, 256) // this should be reused +// buffer := make([]uint, 256) // this should be reused // j := uint(0) // j, buffer = bitmap.NextSetMany(j, buffer) // for ; len(buffer) > 0; j, buffer = bitmap.NextSetMany(j,buffer) {