diff --git a/typos/src/dict.rs b/typos/src/dict.rs index 084cbc4..76cea74 100644 --- a/typos/src/dict.rs +++ b/typos/src/dict.rs @@ -1,6 +1,6 @@ use std::borrow::Cow; -pub trait Dictionary { +pub trait Dictionary: Send + Sync { fn correct_ident<'s, 'w>( &'s self, _ident: crate::tokens::Identifier<'w>,