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> {
|
impl<V> DictTrie<V> {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn find(&self, word: &'_ unicase::UniCase<&str>) -> Option<&'static V> {
|
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()) {
|
if self.range.contains(&word.len()) {
|
||||||
self.find_ascii(word.as_bytes())
|
self.find_ascii(word.as_bytes())
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue