diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/selectors/bloom.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/selectors/bloom.rs b/components/selectors/bloom.rs index 8caab9935cb..0e8290fc8c9 100644 --- a/components/selectors/bloom.rs +++ b/components/selectors/bloom.rs @@ -7,7 +7,7 @@ use fnv::FnvHasher; use std::hash::{Hash, Hasher}; -// The top 12 bits of the 32-bit hash value are not used by the bloom filter. +// The top 8 bits of the 32-bit hash value are not used by the bloom filter. // Consumers may rely on this to pack hashes more efficiently. pub const BLOOM_HASH_MASK: u32 = 0x00ffffff; const KEY_SIZE: usize = 12; |