Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dict): Recognize alloced and requestor #1151

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/typos-dict/assets/allowed.csv
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ tesselating,potentially US variant of tessellating
tesselation,potentially US variant of tessellation
tesselator,potentially US variant of tessellator
additionals,additional looks like its sometimes a countable noun
requestor,domain-specific variant of requester
alloced,past tense of common programming abbreviation alloc
3 changes: 0 additions & 3 deletions crates/typos-dict/assets/words.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2572,7 +2572,6 @@ alloccate,allocate
alloccated,allocated
alloccates,allocates
alloccating,allocating
alloced,allocated
alloco,alloc
allococate,allocate
allocos,allocs
Expand Down Expand Up @@ -53431,8 +53430,6 @@ requestested,requested
requestests,requests,requested
requestet,requested
requestied,requested
requestor,requester
requestors,requesters
requestying,requesting
requet,request
requeted,requested
Expand Down
6 changes: 0 additions & 6 deletions crates/typos-dict/src/word_codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52644,8 +52644,6 @@ pub static WORD_REQUE_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
dictgen::InsensitiveStr::Ascii("stests"),
dictgen::InsensitiveStr::Ascii("stet"),
dictgen::InsensitiveStr::Ascii("stied"),
dictgen::InsensitiveStr::Ascii("stor"),
dictgen::InsensitiveStr::Ascii("stors"),
dictgen::InsensitiveStr::Ascii("stying"),
dictgen::InsensitiveStr::Ascii("t"),
dictgen::InsensitiveStr::Ascii("ted"),
Expand Down Expand Up @@ -52676,8 +52674,6 @@ pub static WORD_REQUE_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
&["requests", "requested"],
&["requested"],
&["requested"],
&["requester"],
&["requesters"],
&["requesting"],
&["request"],
&["requested"],
Expand Down Expand Up @@ -225037,7 +225033,6 @@ pub static WORD_ALLOC_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
dictgen::InsensitiveStr::Ascii("cated"),
dictgen::InsensitiveStr::Ascii("cates"),
dictgen::InsensitiveStr::Ascii("cating"),
dictgen::InsensitiveStr::Ascii("ed"),
dictgen::InsensitiveStr::Ascii("o"),
dictgen::InsensitiveStr::Ascii("ocate"),
dictgen::InsensitiveStr::Ascii("os"),
Expand Down Expand Up @@ -225085,7 +225080,6 @@ pub static WORD_ALLOC_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
&["allocated"],
&["allocates"],
&["allocating"],
&["allocated"],
&["alloc"],
&["allocate"],
&["allocs"],
Expand Down
Loading