From 34b1f2199f16eadbef0e0cd2c1137d03b08c164b Mon Sep 17 00:00:00 2001 From: Richard Artoul Date: Fri, 30 Nov 2018 14:41:59 -0500 Subject: [PATCH] Fix comment --- roaring/roaring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roaring/roaring.go b/roaring/roaring.go index be6010b52..2d88f2868 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -395,7 +395,7 @@ func (b *Bitmap) Intersect(other *Bitmap) *Bitmap { return output } -// Union returns the bitwise union of b and other as a new bitmap. +// Union returns the bitwise union of b and others as a new bitmap. func (b *Bitmap) Union(others ...*Bitmap) *Bitmap { output := NewBitmap() if len(others) == 1 {