From a58459cf0fb10fd4b8e985df8b7569629890b21d Mon Sep 17 00:00:00 2001 From: Matt Jaffee Date: Wed, 27 Feb 2019 14:57:20 -0600 Subject: [PATCH] fix spelling of unnecessary --- roaring/roaring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roaring/roaring.go b/roaring/roaring.go index 5ce30b667..7a61bab1f 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -295,7 +295,7 @@ func (b *Bitmap) Count() (n uint64) { func (b *Bitmap) Any() bool { iter, _ := b.Containers.Iterator(0) // TODO (jaffee) I'm not sure if it's possible/legal to have an empty - // container, so this loop may be totally uneccesary. In theory, any empty + // container, so this loop may be totally unnecessary. In theory, any empty // container should be removed from the bitmap though. for b := iter.Next(); b; iter.Next() { _, c := iter.Value()