mirror of
https://github.com/crate-ci/typos.git
synced 2025-01-11 09:11:39 -05:00
Merge pull request #1196 from epage/fix
fix(dictgen): Align trie write/access conditions
This commit is contained in:
commit
c6beb8b05a
1 changed files with 6 additions and 1 deletions
|
@ -34,7 +34,12 @@ pub struct DictTrie<V: 'static> {
|
|||
impl<V> DictTrie<V> {
|
||||
#[inline]
|
||||
pub fn find(&self, word: &'_ unicase::UniCase<&str>) -> Option<&'static V> {
|
||||
if word.is_ascii() {
|
||||
if word
|
||||
.into_inner()
|
||||
.as_bytes()
|
||||
.iter()
|
||||
.all(|b| b.is_ascii_alphabetic())
|
||||
{
|
||||
if self.range.contains(&word.len()) {
|
||||
self.find_ascii(word.as_bytes())
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue