Skip to content

Commit

Permalink
fix misspelling and run gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
travisturner committed May 31, 2017
1 parent f584400 commit 879e02d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions roaring/roaring.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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
Expand Down

0 comments on commit 879e02d

Please sign in to comment.