From c6f8e802838f0278e127dedf533edaa4c3e7e656 Mon Sep 17 00:00:00 2001 From: TheIronBorn Date: Fri, 11 Feb 2022 00:19:13 +0000 Subject: [PATCH] Update bloom.rs --- src/bloom.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bloom.rs b/src/bloom.rs index 55b1e24..357bc2f 100644 --- a/src/bloom.rs +++ b/src/bloom.rs @@ -32,7 +32,7 @@ use super::hashing::HashIter; /// /// # False Positive Rate /// The false positive rate is specified as a float in the range -/// (0,1). If indicates that out of `X` probes, `X * rate` should +/// (0,1). It indicates that out of `X` probes, `X * rate` should /// return a false positive. Higher values will lead to smaller (but /// more inaccurate) filters. ///