mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
commit
b75760faf0
3 changed files with 7 additions and 1 deletions
|
@ -31,7 +31,7 @@ to re-work some of it and the discouragement that goes along with that.
|
|||
|
||||
`typos` dictionary is a mapping of typos to a list of possible corrections (see [Design](docs/design.md)). To add to the dictionary:
|
||||
|
||||
1. Add your type to our data file `crates/typos-dict/assets/words.csv`
|
||||
1. Add your typo to our data file `crates/typos-dict/assets/words.csv`
|
||||
|
||||
Format: `typo,correction[,correction...]`
|
||||
|
||||
|
|
2
crates/typos-dict/assets/words.csv
vendored
2
crates/typos-dict/assets/words.csv
vendored
|
@ -43653,6 +43653,7 @@ signifigant,significant
|
|||
signifigantly,significantly
|
||||
signifikant,significant
|
||||
signifiy,signify
|
||||
signign,signing
|
||||
signigns,signings
|
||||
signins,signings
|
||||
signitories,signatories
|
||||
|
@ -49982,6 +49983,7 @@ unempolyed,unemployed
|
|||
unempolyment,unemployment
|
||||
unencrpt,unencrypt
|
||||
unencrpted,unencrypted
|
||||
unencyrpted,unencrypted
|
||||
unenforcable,unenforceable
|
||||
unenployment,unemployment
|
||||
unepected,unexpected
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -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"],
|
||||
],
|
||||
|
@ -30107,6 +30109,7 @@ pub static WORD_SIG_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
dictgen::InsensitiveStr::Ascii("nifigantly"),
|
||||
dictgen::InsensitiveStr::Ascii("nifikant"),
|
||||
dictgen::InsensitiveStr::Ascii("nifiy"),
|
||||
dictgen::InsensitiveStr::Ascii("nign"),
|
||||
dictgen::InsensitiveStr::Ascii("nigns"),
|
||||
dictgen::InsensitiveStr::Ascii("nins"),
|
||||
dictgen::InsensitiveStr::Ascii("nitories"),
|
||||
|
@ -30169,6 +30172,7 @@ pub static WORD_SIG_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
&["significantly"],
|
||||
&["significant"],
|
||||
&["signify"],
|
||||
&["signing"],
|
||||
&["signings"],
|
||||
&["signings"],
|
||||
&["signatories"],
|
||||
|
|
Loading…
Reference in a new issue