From 287d0b388aabdc0496da0625673b7c6e70ef1c1c Mon Sep 17 00:00:00 2001 From: Ariel Shtul Date: Thu, 29 Aug 2024 15:56:02 +0300 Subject: [PATCH] Stanard -> Standard More explicit description of trait. I want to adapt it in another crate I'm working on. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2c494ed..5937a57 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -119,7 +119,7 @@ pub use counting::CountingBloomFilter; pub mod valuevec; pub use valuevec::ValueVec; -/// Stanard filter functions +/// Standard filter functions for Approximate Set Membership Structures (ASMS). pub trait ASMS { fn insert(& mut self,item: &T) -> bool; fn contains(&self, item: &T) -> bool;