Skip to content

Commit

Permalink
fix comment mispelling
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Apr 14, 2021
1 parent 495f0bf commit 1660df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_jaccard.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_jaccard_1(track_abundance):
E2.add_hash(i)

# here the union is [1, 2, 3, 4, 5]
# and the intesection is [1, 2, 3, 4] => 4/5.
# and the intersection is [1, 2, 3, 4] => 4/5.

assert round(E1.jaccard(E2), 2) == round(4 / 5.0, 2)
assert round(E2.jaccard(E1), 2) == round(4 / 5.0, 2)
Expand Down

0 comments on commit 1660df5

Please sign in to comment.