Skip to content

Commit

Permalink
fix(dict): Treat arguement as a misspelling
Browse files Browse the repository at this point in the history
Fixes #816
  • Loading branch information
epage committed Aug 30, 2023
1 parent ca8ac80 commit 8143c3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions crates/typos-dict/assets/words.csv
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions crates/typos-dict/src/dict_codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -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"],
Expand Down

0 comments on commit 8143c3b

Please sign in to comment.