Adds 'regylar' as a typo for 'regular'.

This commit is contained in:
Olivier Delhomme 2023-01-17 20:37:35 +01:00
parent 12c6491895
commit ee8446b127
2 changed files with 13 additions and 1 deletions

View file

@ -40525,6 +40525,7 @@ regural,regular
regurally,regularly
regurlarly,regularly
reguster,register
regylar,regular
rehabilitacion,rehabilitation
rehabilitaion,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,
Some(&WORD_REGY_NODE),
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 {
children: dictgen::DictTrieChild::Nested(&WORD_REGU_CHILDREN),
value: None,