fix(dict): Don't correct kms

Fixes #993
This commit is contained in:
Ed Page 2024-04-12 15:43:43 -05:00
parent 45d4d0297f
commit 13d8f4b349
3 changed files with 4 additions and 7 deletions

View file

@ -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 nilable used in ruby community
37 ans abbreviation for answer
38 automations while automation is uncountable there are cases where automations works like with iPhone automations
39 inout keyword in many languages but used in many more
40 kms common enough acronym for Key Management Service

View file

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

View file

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