fix misspelling and run gofmt

This commit is contained in:
Travis 2017-05-31 16:22:43 -05:00
parent f584400330
commit 879e02de81
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

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