From 89f3c10d2c35e55dcc0ae91b6755d54484e60be5 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Tue, 15 May 2018 10:25:53 -0500 Subject: [PATCH] Clarify comment --- roaring/roaring.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roaring/roaring.go b/roaring/roaring.go index ce0e6753b..820a0756f 100644 --- a/roaring/roaring.go +++ b/roaring/roaring.go @@ -121,7 +121,8 @@ func NewBitmap(a ...uint64) *Bitmap { return b } -// NewFileBitmap returns a Bitmap with an initial set of values. +// NewFileBitmap returns a Bitmap with an initial set of values, used for file storage. +// By default, this is a copy of NewBitmap, but is replaced with B+Tree in server/enterprise.go var NewFileBitmap func(a ...uint64) *Bitmap = NewBitmap // Clone returns a heap allocated copy of the bitmap.