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): Allow spawnve #796

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions crates/typos-dict/assets/allowed.csv
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pervious,adjective
perviously,adverb
referer,http header field
simulative,adjective
spawnve,Microsoft-specific function (see https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/spawnve)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm assuming, through bindings, this appears in enough programming languages that this is a generally allowed word, rather than a file-type specific one?

thead,html tag
unuseful,adjective
zar,currency code for the South African rand
1 change: 0 additions & 1 deletion crates/typos-dict/assets/words.csv
Original file line number Diff line number Diff line change
Expand Up @@ -53505,7 +53505,6 @@ spawing,spawning
spawining,spawning
spawnig,spawning
spawnign,spawning
spawnve,spawn
spaws,spawns
spcae,space
spcaed,spaced
Expand Down
2 changes: 0 additions & 2 deletions crates/typos-dict/src/dict_codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33487,7 +33487,6 @@ pub static WORD_SPA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
dictgen::InsensitiveStr::Ascii("wining"),
dictgen::InsensitiveStr::Ascii("wnig"),
dictgen::InsensitiveStr::Ascii("wnign"),
dictgen::InsensitiveStr::Ascii("wnve"),
dictgen::InsensitiveStr::Ascii("ws"),
],
values: &[
Expand Down Expand Up @@ -33542,7 +33541,6 @@ pub static WORD_SPA_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
&["spawning"],
&["spawning"],
&["spawning"],
&["spawn"],
&["spawns"],
],
range: 1..=11,
Expand Down
Loading