feat(dict): Add 'unencyrpted' typo to words.csv

This commit is contained in:
Jonas Platte 2022-04-25 13:19:59 +02:00 committed by Ed Page
parent 42c935f946
commit bbd71ab434
2 changed files with 3 additions and 0 deletions

View file

@ -49982,6 +49982,7 @@ unempolyed,unemployed
unempolyment,unemployment unempolyment,unemployment
unencrpt,unencrypt unencrpt,unencrypt
unencrpted,unencrypted unencrpted,unencrypted
unencyrpted,unencrypted
unenforcable,unenforceable unenforcable,unenforceable
unenployment,unemployment unenployment,unemployment
unepected,unexpected unepected,unexpected

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

View file

@ -8969,12 +8969,14 @@ pub static WORD_UNEN_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
keys: &[ keys: &[
dictgen::InsensitiveStr::Ascii("crpt"), dictgen::InsensitiveStr::Ascii("crpt"),
dictgen::InsensitiveStr::Ascii("crpted"), dictgen::InsensitiveStr::Ascii("crpted"),
dictgen::InsensitiveStr::Ascii("cyrpted"),
dictgen::InsensitiveStr::Ascii("forcable"), dictgen::InsensitiveStr::Ascii("forcable"),
dictgen::InsensitiveStr::Ascii("ployment"), dictgen::InsensitiveStr::Ascii("ployment"),
], ],
values: &[ values: &[
&["unencrypt"], &["unencrypt"],
&["unencrypted"], &["unencrypted"],
&["unencrypted"],
&["unenforceable"], &["unenforceable"],
&["unemployment"], &["unemployment"],
], ],