Fix comment

This commit is contained in:
Richard Artoul 2018-11-30 14:41:59 -05:00
parent 3570ec7ab6
commit 34b1f2199f

View file

@ -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 {