Merge pull request #981 from epage/ans

fix(dict): Don't correct `ans`
This commit is contained in:
Ed Page 2024-04-04 09:17:10 -05:00 committed by GitHub
commit 5ef04e2858
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View file

@ -33,3 +33,4 @@ ro,acronym for read-only
dur,abbreviation for duration dur,abbreviation for duration
ang,abbreviation for angle ang,abbreviation for angle
lst,abbreviation for list especially when list is a built-in like Python lst,abbreviation for list especially when list is a built-in like Python
ans,abbrevation for answer

1 nilable used in ruby community
33 dur abbreviation for duration
34 ang abbreviation for angle
35 lst abbreviation for list especially when list is a built-in like Python
36 ans abbrevation for answer

View file

@ -3383,7 +3383,6 @@ anpitheater,amphitheater
anpitheaters,amphitheaters anpitheaters,amphitheaters
anrachist,anarchist anrachist,anarchist
anroid,android anroid,android
ans,and
ansalisation,nasalisation ansalisation,nasalisation
ansalization,nasalization ansalization,nasalization
ansamble,ensemble ansamble,ensemble

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

View file

@ -207852,7 +207852,7 @@ pub static WORD_ANTA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
static WORD_ANS_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode { static WORD_ANS_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
children: dictgen::DictTrieChild::Flat(&WORD_ANS_CHILDREN), children: dictgen::DictTrieChild::Flat(&WORD_ANS_CHILDREN),
value: Some(&["and"]), value: None,
}; };
pub static WORD_ANS_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable { pub static WORD_ANS_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {