Merge pull request #654 from dupgit/master

Adds 'regylar' as a typo for 'regular'.
This commit is contained in:
Ed Page 2023-01-17 21:47:11 -06:00 committed by GitHub
commit dbd12ef135
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View file

@ -40525,6 +40525,7 @@ regural,regular
regurally,regularly regurally,regularly
regurlarly,regularly regurlarly,regularly
reguster,register reguster,register
regylar,regular
rehabilitacion,rehabilitation rehabilitacion,rehabilitation
rehabilitaion,rehabilitation rehabilitaion,rehabilitation
rehabilitaiton,rehabilitation rehabilitaiton,rehabilitation

Can't render this file because it is too large.

View file

@ -43632,10 +43632,21 @@ static WORD_REG_CHILDREN: [Option<&dictgen::DictTrieNode<&'static [&'static str]
None, None,
None, None,
None, None,
None, Some(&WORD_REGY_NODE),
None, None,
]; ];
static WORD_REGY_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
children: dictgen::DictTrieChild::Flat(&WORD_REGY_CHILDREN),
value: None,
};
pub static WORD_REGY_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[dictgen::InsensitiveStr::Ascii("lar")],
values: &[&["regular"]],
range: 3..=3,
};
static WORD_REGU_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode { static WORD_REGU_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
children: dictgen::DictTrieChild::Nested(&WORD_REGU_CHILDREN), children: dictgen::DictTrieChild::Nested(&WORD_REGU_CHILDREN),
value: None, value: None,