From db471994d8d9b532b2fb2e4e5ca44eb1fdd28825 Mon Sep 17 00:00:00 2001 From: Nikhil Katre Date: Fri, 3 Jan 2014 01:02:24 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc3310e..2f2acba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ bloomfilter.go A Bloom Filter Implementation in Go This implementation includes: -- Standard Bloom Filter +- Standard Bloom Filter. - Counting Bloom Filter Standard Bloom Filter, except that it supports deletions, by keeping 8-bit counters in each slot. These counters are likely to overflow if we add too many elements.