| Index: third_party/WebKit/Source/wtf/BloomFilter.h
|
| diff --git a/third_party/WebKit/Source/wtf/BloomFilter.h b/third_party/WebKit/Source/wtf/BloomFilter.h
|
| index 2d16dca5c309ea30dd91c4a61fae4ac81cf9124b..131f92ba9e72b0ec308827c7e2b0ee5d9a5d4212 100644
|
| --- a/third_party/WebKit/Source/wtf/BloomFilter.h
|
| +++ b/third_party/WebKit/Source/wtf/BloomFilter.h
|
| @@ -32,9 +32,9 @@
|
|
|
| namespace WTF {
|
|
|
| -// Counting bloom filter with k=2 and 8 bit counters. Uses 2^keyBits bytes of memory.
|
| -// False positive rate is approximately (1-e^(-2n/m))^2, where n is the number of unique
|
| -// keys and m is the table size (==2^keyBits).
|
| +// Counting bloom filter with k=2 and 8 bit counters. Uses 2^keyBits bytes of
|
| +// memory. False positive rate is approximately (1-e^(-2n/m))^2, where n is
|
| +// the number of unique keys and m is the table size (==2^keyBits).
|
| template <unsigned keyBits>
|
| class BloomFilter {
|
| USING_FAST_MALLOC(BloomFilter);
|
|
|