mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 18:41:05 -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
|
dequeues,verb
|
||||||
ons,so `add-ons` works
|
ons,so `add-ons` works
|
||||||
accreting,verb of accrete
|
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
|
yuor,your
|
||||||
yur,your
|
yur,your
|
||||||
zaelots,zealots
|
zaelots,zealots
|
||||||
zar,czar
|
|
||||||
zars,czars
|
zars,czars
|
||||||
zealotes,zealots
|
zealotes,zealots
|
||||||
zealoths,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 {
|
pub static WORD_ZA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||||
keys: &[
|
keys: &[
|
||||||
dictgen::InsensitiveStr::Ascii("elots"),
|
dictgen::InsensitiveStr::Ascii("elots"),
|
||||||
dictgen::InsensitiveStr::Ascii("r"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("rs"),
|
dictgen::InsensitiveStr::Ascii("rs"),
|
||||||
],
|
],
|
||||||
values: &[&["zealots"], &["czar"], &["czars"]],
|
values: &[&["zealots"], &["czars"]],
|
||||||
range: 1..=5,
|
range: 2..=5,
|
||||||
};
|
};
|
||||||
|
|
||||||
static WORD_Y_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
static WORD_Y_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||||
|
|
Loading…
Reference in a new issue