mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
fix misspelling and run gofmt
This commit is contained in:
parent
f584400330
commit
879e02de81
1 changed files with 1 additions and 2 deletions
|
|
@ -209,7 +209,7 @@ func (b *Bitmap) CountRange(start, end uint64) (n uint64) {
|
|||
return n
|
||||
}
|
||||
|
||||
//Stringify method for debuging.
|
||||
// Stringify method for debugging.
|
||||
func (b *Bitmap) String() string {
|
||||
var buffer bytes.Buffer
|
||||
for i, v := range b.Slice() {
|
||||
|
|
@ -221,7 +221,6 @@ func (b *Bitmap) String() string {
|
|||
return buffer.String()
|
||||
}
|
||||
|
||||
|
||||
// Slice returns a slice of all integers in the bitmap.
|
||||
func (b *Bitmap) Slice() []uint64 {
|
||||
var a []uint64
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue