mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
Merge pull request #654 from dupgit/master
Adds 'regylar' as a typo for 'regular'.
This commit is contained in:
commit
dbd12ef135
2 changed files with 13 additions and 1 deletions
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -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.
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue