Skip to content

Commit

Permalink
fix(dict)!: Make dictionary usable across threads
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 27, 2019
1 parent 0a2f865 commit 86b22d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typos/src/dict.rs
Original file line number Diff line number Diff line change
@@ -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>,
Expand Down

0 comments on commit 86b22d1

Please sign in to comment.