mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
Merge pull request #836 from epage/ident
fix(cli): Properly fallback to built-in ident dict
This commit is contained in:
commit
1a3ce2b924
1 changed files with 5 additions and 6 deletions
|
@ -270,13 +270,12 @@ impl<'i, 'w, D: typos::Dictionary> typos::Dictionary for Override<'i, 'w, D> {
|
|||
|
||||
// Skip hashing if we can
|
||||
if !self.identifiers.is_empty() {
|
||||
self.identifiers
|
||||
.get(ident.token())
|
||||
.map(|c| c.borrow())
|
||||
.or_else(|| self.inner.correct_ident(ident))
|
||||
} else {
|
||||
None
|
||||
if let Some(status) = self.identifiers.get(ident.token()).map(|c| c.borrow()) {
|
||||
return Some(status);
|
||||
}
|
||||
}
|
||||
|
||||
self.inner.correct_ident(ident)
|
||||
}
|
||||
|
||||
fn correct_word<'s>(&'s self, word: typos::tokens::Word<'_>) -> Option<Status<'s>> {
|
||||
|
|
Loading…
Reference in a new issue