mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
Merge pull request #770 from epage/zar
fix(dict): Dont correct currency code
This commit is contained in:
commit
2b0c688117
3 changed files with 3 additions and 4 deletions
1
crates/typos-dict/assets/allowed.csv
vendored
1
crates/typos-dict/assets/allowed.csv
vendored
|
@ -6,3 +6,4 @@ deques,noun
|
|||
dequeues,verb
|
||||
ons,so `add-ons` works
|
||||
accreting,verb of accrete
|
||||
zar,currency code for the South African rand
|
||||
|
|
|
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -63006,7 +63006,6 @@ yuo,you
|
|||
yuor,your
|
||||
yur,your
|
||||
zaelots,zealots
|
||||
zar,czar
|
||||
zars,czars
|
||||
zealotes,zealots
|
||||
zealoths,zealots
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -308,11 +308,10 @@ static WORD_ZA_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::D
|
|||
pub static WORD_ZA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("elots"),
|
||||
dictgen::InsensitiveStr::Ascii("r"),
|
||||
dictgen::InsensitiveStr::Ascii("rs"),
|
||||
],
|
||||
values: &[&["zealots"], &["czar"], &["czars"]],
|
||||
range: 1..=5,
|
||||
values: &[&["zealots"], &["czars"]],
|
||||
range: 2..=5,
|
||||
};
|
||||
|
||||
static WORD_Y_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
|
Loading…
Reference in a new issue