Clarify comment

This commit is contained in:
Cody Soyland 2018-05-15 10:25:53 -05:00
parent 71373945da
commit 89f3c10d2c

View file

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