mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
parent
45d4d0297f
commit
13d8f4b349
3 changed files with 4 additions and 7 deletions
1
crates/typos-dict/assets/allowed.csv
vendored
1
crates/typos-dict/assets/allowed.csv
vendored
|
@ -37,3 +37,4 @@ lst,abbreviation for list especially when list is a built-in like Python
|
|||
ans,abbreviation for answer
|
||||
automations,while automation is uncountable there are cases where automations works like with iPhone automations
|
||||
inout,keyword in many languages but used in many more
|
||||
kms,common enough acronym for Key Management Service
|
||||
|
|
|
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -34496,7 +34496,6 @@ klicked,clicked
|
|||
klicks,clicks
|
||||
klunky,clunky
|
||||
kmow,know
|
||||
kms,km
|
||||
knarl,gnarl
|
||||
knarled,gnarled
|
||||
knarling,gnarling
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -103860,12 +103860,9 @@ static WORD_KM_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::D
|
|||
};
|
||||
|
||||
pub static WORD_KM_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("ow"),
|
||||
dictgen::InsensitiveStr::Ascii("s"),
|
||||
],
|
||||
values: &[&["know"], &["km"]],
|
||||
range: 1..=2,
|
||||
keys: &[dictgen::InsensitiveStr::Ascii("ow")],
|
||||
values: &[&["know"]],
|
||||
range: 2..=2,
|
||||
};
|
||||
|
||||
static WORD_KL_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
|
Loading…
Reference in a new issue