We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae88d1 commit 4508d4cCopy full SHA for 4508d4c
1 file changed
filter.go
@@ -5,10 +5,9 @@
5
// A Bloom filter is a fast and space-efficient probabilistic data structure
6
// used to test set membership.
7
//
8
-// A membership test returns either
9
-// ”likely member” or ”definitely not a member”. Only false positives
10
-// can occur: an element that has been added to the filter
11
-// will be identified as ”likely member”.
+// A membership test returns either ”likely member” or ”definitely not
+// a member”. Only false positives can occur: an element that has been added
+// to the filter will always be identified as ”likely member”.
12
13
// Elements can be added, but not removed. With more elements in the filter,
14
// the probability of false positives increases.
0 commit comments