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 {