From c1c1121e51179217bee47e34a361e88ec10812e0 Mon Sep 17 00:00:00 2001 From: Richard Artoul Date: Thu, 29 Nov 2018 16:41:30 -0500 Subject: [PATCH] more comment refactoring --- roaring/roaring.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roaring/roaring.go b/roaring/roaring.go index 04f6bed69..d790bb24f 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -699,7 +699,7 @@ func (b *Bitmap) unionIntoTarget(target *Bitmap, others ...*Bitmap) { // Performing the popcount() operation with every union is wasteful because // its likely the value will be invalidated by the next union operation. As - // a result, when we're performing all our in-place unions we allow the value of + // a result, when we're performing all of our in-place unions we allow the value of // n (container cardinality) to fall out of sync, and then at the very end we perform // a "Repair" to recalculate all the container values. That way we never popcount() // an entire bitmap container more than once per bulk union operation.