From bbd71ab43418e64d92177308d3e39bc96f94007b Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 25 Apr 2022 13:19:59 +0200 Subject: [PATCH] feat(dict): Add 'unencyrpted' typo to words.csv --- crates/typos-dict/assets/words.csv | 1 + crates/typos-dict/src/dict_codegen.rs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/crates/typos-dict/assets/words.csv b/crates/typos-dict/assets/words.csv index ad68a85..2a8e0e7 100644 --- a/crates/typos-dict/assets/words.csv +++ b/crates/typos-dict/assets/words.csv @@ -49982,6 +49982,7 @@ unempolyed,unemployed unempolyment,unemployment unencrpt,unencrypt unencrpted,unencrypted +unencyrpted,unencrypted unenforcable,unenforceable unenployment,unemployment unepected,unexpected diff --git a/crates/typos-dict/src/dict_codegen.rs b/crates/typos-dict/src/dict_codegen.rs index f3fc28b..f3f3b95 100644 --- a/crates/typos-dict/src/dict_codegen.rs +++ b/crates/typos-dict/src/dict_codegen.rs @@ -8969,12 +8969,14 @@ pub static WORD_UNEN_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic keys: &[ dictgen::InsensitiveStr::Ascii("crpt"), dictgen::InsensitiveStr::Ascii("crpted"), + dictgen::InsensitiveStr::Ascii("cyrpted"), dictgen::InsensitiveStr::Ascii("forcable"), dictgen::InsensitiveStr::Ascii("ployment"), ], values: &[ &["unencrypt"], &["unencrypted"], + &["unencrypted"], &["unenforceable"], &["unemployment"], ],