Skip to content

Commit b705c37

Browse files
committed
correct typo
1 parent fb67118 commit b705c37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roaring64/roaring64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func (rb *Bitmap) CheckedAdd(x uint64) bool {
346346
return true
347347
}
348348

349-
// AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint32 and we call Add)
349+
// AddInt adds the integer x to the bitmap (convenience method: the parameter is casted to uint64 and we call Add)
350350
func (rb *Bitmap) AddInt(x int) {
351351
rb.Add(uint64(x))
352352
}

0 commit comments

Comments
 (0)