Merge pull request #659 from Jiralite/feat/more-typos

feat: add detctable & seaonal & wayferer
This commit is contained in:
Ed Page 2023-02-01 09:29:01 -06:00 committed by GitHub
commit a9d8b16b82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 6 deletions

View file

@ -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.

View file

@ -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 {