mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
feat: Add 3 typos
This commit is contained in:
parent
97770bdd02
commit
9094b0b9aa
2 changed files with 17 additions and 6 deletions
3
crates/typos-dict/assets/words.csv
vendored
3
crates/typos-dict/assets/words.csv
vendored
|
@ -15124,6 +15124,7 @@ detatched,detached
|
|||
detatches,detaches
|
||||
detatching,detaching
|
||||
detault,default
|
||||
detctable,detectable
|
||||
detction,detection
|
||||
deteced,detected
|
||||
detecing,detecting
|
||||
|
@ -43248,6 +43249,7 @@ seamlessley,seamlessly
|
|||
seamlessy,seamlessly
|
||||
seantor,senator
|
||||
seantors,senators
|
||||
seaonal,seasonal
|
||||
searcahble,searchable
|
||||
searchd,searched
|
||||
searche,search,searched
|
||||
|
@ -52639,6 +52641,7 @@ waviers,waivers
|
|||
wawe,wave
|
||||
wawes,waves
|
||||
wawrick,warwick
|
||||
wayferer,wayfarer
|
||||
wayword,wayward
|
||||
weakenend,weakened
|
||||
weakensses,weaknesses
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -2457,9 +2457,12 @@ static WORD_WAY_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::
|
|||
};
|
||||
|
||||
pub static WORD_WAY_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[dictgen::InsensitiveStr::Ascii("word")],
|
||||
values: &[&["wayward"]],
|
||||
range: 4..=4,
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("ferer"),
|
||||
dictgen::InsensitiveStr::Ascii("word"),
|
||||
],
|
||||
values: &[&["wayfarer"], &["wayward"]],
|
||||
range: 4..=5,
|
||||
};
|
||||
|
||||
static WORD_WAW_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
@ -33847,6 +33850,7 @@ pub static WORD_SEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
dictgen::InsensitiveStr::Ascii("mlessy"),
|
||||
dictgen::InsensitiveStr::Ascii("ntor"),
|
||||
dictgen::InsensitiveStr::Ascii("ntors"),
|
||||
dictgen::InsensitiveStr::Ascii("onal"),
|
||||
dictgen::InsensitiveStr::Ascii("rcahble"),
|
||||
dictgen::InsensitiveStr::Ascii("rchd"),
|
||||
dictgen::InsensitiveStr::Ascii("rche"),
|
||||
|
@ -33872,6 +33876,7 @@ pub static WORD_SEA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
&["seamlessly"],
|
||||
&["senator"],
|
||||
&["senators"],
|
||||
&["seasonal"],
|
||||
&["searchable"],
|
||||
&["searched"],
|
||||
&["search", "searched"],
|
||||
|
@ -128050,9 +128055,12 @@ static WORD_DETC_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen:
|
|||
};
|
||||
|
||||
pub static WORD_DETC_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[dictgen::InsensitiveStr::Ascii("tion")],
|
||||
values: &[&["detection"]],
|
||||
range: 4..=4,
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("table"),
|
||||
dictgen::InsensitiveStr::Ascii("tion"),
|
||||
],
|
||||
values: &[&["detectable"], &["detection"]],
|
||||
range: 4..=5,
|
||||
};
|
||||
|
||||
static WORD_DETA_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
|
Loading…
Reference in a new issue