mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 10:31:02 -05:00
feat(dict): Add 'stte' typo
This commit is contained in:
parent
7be4ba34c9
commit
e8e20f28bb
2 changed files with 4 additions and 1 deletions
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -46269,6 +46269,7 @@ struture,structure
|
|||
strwaberry,strawberry
|
||||
stryofoam,styrofoam
|
||||
ststr,strstr
|
||||
stte,state
|
||||
stteting,setting
|
||||
sttetings,settings
|
||||
stting,string,setting,sitting
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -23387,6 +23387,7 @@ static WORD_STT_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::
|
|||
|
||||
pub static WORD_STT_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("e"),
|
||||
dictgen::InsensitiveStr::Ascii("eting"),
|
||||
dictgen::InsensitiveStr::Ascii("etings"),
|
||||
dictgen::InsensitiveStr::Ascii("ing"),
|
||||
|
@ -23394,13 +23395,14 @@ pub static WORD_STT_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
dictgen::InsensitiveStr::Ascii("utering"),
|
||||
],
|
||||
values: &[
|
||||
&["state"],
|
||||
&["setting"],
|
||||
&["settings"],
|
||||
&["string", "setting", "sitting"],
|
||||
&["strings", "settings", "sittings"],
|
||||
&["stuttering"],
|
||||
],
|
||||
range: 3..=7,
|
||||
range: 1..=7,
|
||||
};
|
||||
|
||||
static WORD_STS_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
|
Loading…
Reference in a new issue