mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
Merge pull request #817 from epage/argue
fix(dict): Treat arguement as a misspelling
This commit is contained in:
commit
c4deebd5d4
2 changed files with 7 additions and 4 deletions
5
crates/typos-dict/assets/words.csv
vendored
5
crates/typos-dict/assets/words.csv
vendored
|
@ -4306,12 +4306,13 @@ arguabley,arguably
|
|||
arguablly,arguably
|
||||
argubaly,arguably
|
||||
argubly,arguably
|
||||
arguement,argument
|
||||
arguements,arguments
|
||||
arguemet,arguement
|
||||
arguemet,argument
|
||||
arguemnet,argument
|
||||
arguemnt,argument
|
||||
arguemnts,arguments
|
||||
arguemtn,arguement,argument
|
||||
arguemtn,argument
|
||||
arguemtns,arguments
|
||||
arguents,arguments
|
||||
argumant,argument
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -197801,6 +197801,7 @@ pub static WORD_ARG_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
dictgen::InsensitiveStr::Ascii("uablly"),
|
||||
dictgen::InsensitiveStr::Ascii("ubaly"),
|
||||
dictgen::InsensitiveStr::Ascii("ubly"),
|
||||
dictgen::InsensitiveStr::Ascii("uement"),
|
||||
dictgen::InsensitiveStr::Ascii("uements"),
|
||||
dictgen::InsensitiveStr::Ascii("uemet"),
|
||||
dictgen::InsensitiveStr::Ascii("uemnet"),
|
||||
|
@ -197859,12 +197860,13 @@ pub static WORD_ARG_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
|||
&["arguably"],
|
||||
&["arguably"],
|
||||
&["arguably"],
|
||||
&["argument"],
|
||||
&["arguments"],
|
||||
&["arguement"],
|
||||
&["argument"],
|
||||
&["argument"],
|
||||
&["argument"],
|
||||
&["arguments"],
|
||||
&["arguement", "argument"],
|
||||
&["argument"],
|
||||
&["arguments"],
|
||||
&["arguments"],
|
||||
&["argument"],
|
||||
|
|
Loading…
Reference in a new issue