Skip to content

Commit c132d50

Browse files
isidroascclauss
andauthored
Update data_structures/hashing/bloom_filter.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 9b01472 commit c132d50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/hashing/bloom_filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
See https://en.wikipedia.org/wiki/Bloom_filter
33
44
The use of this data structure is to test membership in a set.
5-
Compared to python built-in set() it is more space-efficent.
5+
Compared to Python's built-in set() it is more space-efficient.
66
In the following example, only 8 bits of memory will be used:
77
>>> b = Bloom(size=8)
88
>>> "Titanic" in b

0 commit comments

Comments
 (0)