Skip to content

Commit

Permalink
Merge pull request #163 from bits-and-blooms/doc_fix
Browse files Browse the repository at this point in the history
fix for issue 162
  • Loading branch information
lemire authored Jul 4, 2024
2 parents 95402fe + 8c929d1 commit 4a01a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitset.go
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ func (b *BitSet) Intersection(compare *BitSet) (result *BitSet) {
return
}

// IntersectionCardinality computes the cardinality of the union
// IntersectionCardinality computes the cardinality of the intersection
func (b *BitSet) IntersectionCardinality(compare *BitSet) uint {
panicIfNull(b)
panicIfNull(compare)
Expand Down

0 comments on commit 4a01a32

Please sign in to comment.