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): Add more june typos #1053

Merged
merged 1 commit into from
Jul 5, 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
12 changes: 12 additions & 0 deletions crates/typos-dict/assets/words.csv
Original file line number Diff line number Diff line change
Expand Up @@ -4907,6 +4907,7 @@ aske,ask
askes,asks
askign,asking
askreddt,askreddit
aslias,alias
aslo,also
asnd,and
asnwer,answer
Expand Down Expand Up @@ -18117,6 +18118,7 @@ deplorabile,deplorable
deplorible,deplorable
deployd,deployed,deploy
deployement,deployment
deployes,deploys
deploymenet,deployment
deploymenets,deployments
deploymnet,deployment
Expand Down Expand Up @@ -23874,6 +23876,7 @@ exampples,examples
exampt,exempt
exand,expand
exansive,expansive
exapanded,expanded
exapanding,expanding
exapansion,expansion
exapend,expand
Expand Down Expand Up @@ -26728,6 +26731,7 @@ fogot,forgot
fogotten,forgotten
fointers,pointers
foir,for
foirefox,firefox
folde,folder,fold
foler,folder
folers,folders
Expand Down Expand Up @@ -37983,6 +37987,7 @@ methodd,method
methode,method
methoden,methods
methodolgy,methodology
methodoligies,methodologies
methodoligy,methodology
methodoloy,methodology
methodoly,methodology
Expand Down Expand Up @@ -38149,6 +38154,8 @@ micrpohone,microphones
micrsft,microsoft
micrsoft,microsoft
middel,middle
middelware,middleware
middlewar,middleware
middlware,middleware
midevil,medieval
midfeild,midfield
Expand Down Expand Up @@ -43041,6 +43048,7 @@ ovverridden,overridden
ovverride,override
ovverrides,overrides
ovverriding,overriding
owened,owned
owener,owner
owerflow,overflow
owerflowed,overflowed
Expand Down Expand Up @@ -48150,6 +48158,7 @@ prototpye,prototype
prototpyes,prototypes
prototye,prototype
prototyes,prototypes
prototying,prototyping
prototyps,prototypes
protoype,prototype
protoyped,prototyped
Expand Down Expand Up @@ -50466,6 +50475,7 @@ reitterates,reiterates
reivew,review
reivews,reviews
reivison,revision
rejcted,rejected
rejplace,replace
rekenton,renekton
reknown,renown
Expand Down Expand Up @@ -53668,6 +53678,8 @@ screeen,screen
screem,scream,screen
screenchot,screenshot
screenchots,screenshots
screenhot,screenshot
screenhots,screenshots
screenshat,screenshot
screenshit,screenshot
screenshoot,screenshot
Expand Down
39 changes: 32 additions & 7 deletions crates/typos-dict/src/word_codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43767,6 +43767,8 @@ pub static WORD_SCRE_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
dictgen::InsensitiveStr::Ascii("em"),
dictgen::InsensitiveStr::Ascii("enchot"),
dictgen::InsensitiveStr::Ascii("enchots"),
dictgen::InsensitiveStr::Ascii("enhot"),
dictgen::InsensitiveStr::Ascii("enhots"),
dictgen::InsensitiveStr::Ascii("enshat"),
dictgen::InsensitiveStr::Ascii("enshit"),
dictgen::InsensitiveStr::Ascii("enshoot"),
Expand All @@ -43784,6 +43786,8 @@ pub static WORD_SCRE_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
&["screenshot"],
&["screenshots"],
&["screenshot"],
&["screenshots"],
&["screenshot"],
&["screenshot"],
&["screenshot"],
&["screenshot"],
Expand Down Expand Up @@ -54897,9 +54901,12 @@ static WORD_REJ_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::
};

pub static WORD_REJ_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[dictgen::InsensitiveStr::Ascii("place")],
values: &[&["replace"]],
range: 5..=5,
keys: &[
dictgen::InsensitiveStr::Ascii("cted"),
dictgen::InsensitiveStr::Ascii("place"),
],
values: &[&["rejected"], &["replace"]],
range: 4..=5,
};

static WORD_REI_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
Expand Down Expand Up @@ -62932,6 +62939,7 @@ pub static WORD_PROTO_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
dictgen::InsensitiveStr::Ascii("tpyes"),
dictgen::InsensitiveStr::Ascii("tye"),
dictgen::InsensitiveStr::Ascii("tyes"),
dictgen::InsensitiveStr::Ascii("tying"),
dictgen::InsensitiveStr::Ascii("typs"),
dictgen::InsensitiveStr::Ascii("ype"),
dictgen::InsensitiveStr::Ascii("yped"),
Expand Down Expand Up @@ -62970,6 +62978,7 @@ pub static WORD_PROTO_CHILDREN: dictgen::DictTable<&'static [&'static str]> = di
&["prototypes"],
&["prototype"],
&["prototypes"],
&["prototyping"],
&["prototypes"],
&["prototype"],
&["prototyped"],
Expand Down Expand Up @@ -79754,6 +79763,7 @@ static WORD_OW_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::D

pub static WORD_OW_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[
dictgen::InsensitiveStr::Ascii("ened"),
dictgen::InsensitiveStr::Ascii("ener"),
dictgen::InsensitiveStr::Ascii("erflow"),
dictgen::InsensitiveStr::Ascii("erflowed"),
Expand Down Expand Up @@ -79783,6 +79793,7 @@ pub static WORD_OW_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictg
dictgen::InsensitiveStr::Ascii("uldve"),
],
values: &[
&["owned"],
&["owner"],
&["overflow"],
&["overflowed"],
Expand Down Expand Up @@ -97174,6 +97185,8 @@ static WORD_MID_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::
pub static WORD_MID_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[
dictgen::InsensitiveStr::Ascii("del"),
dictgen::InsensitiveStr::Ascii("delware"),
dictgen::InsensitiveStr::Ascii("dlewar"),
dictgen::InsensitiveStr::Ascii("dlware"),
dictgen::InsensitiveStr::Ascii("evil"),
dictgen::InsensitiveStr::Ascii("feild"),
Expand Down Expand Up @@ -97206,6 +97219,8 @@ pub static WORD_MID_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
values: &[
&["middle"],
&["middleware"],
&["middleware"],
&["middleware"],
&["medieval"],
&["midfield"],
&["midfielder"],
Expand Down Expand Up @@ -97829,6 +97844,7 @@ pub static WORD_METH_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
dictgen::InsensitiveStr::Ascii("ode"),
dictgen::InsensitiveStr::Ascii("oden"),
dictgen::InsensitiveStr::Ascii("odolgy"),
dictgen::InsensitiveStr::Ascii("odoligies"),
dictgen::InsensitiveStr::Ascii("odoligy"),
dictgen::InsensitiveStr::Ascii("odoloy"),
dictgen::InsensitiveStr::Ascii("odoly"),
Expand Down Expand Up @@ -97864,6 +97880,7 @@ pub static WORD_METH_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
&["method"],
&["methods"],
&["methodology"],
&["methodologies"],
&["methodology"],
&["methodology"],
&["methodology"],
Expand Down Expand Up @@ -135243,8 +135260,9 @@ pub static WORD_FOI_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
keys: &[
dictgen::InsensitiveStr::Ascii("nters"),
dictgen::InsensitiveStr::Ascii("r"),
dictgen::InsensitiveStr::Ascii("refox"),
],
values: &[&["pointers"], &["for"]],
values: &[&["pointers"], &["for"], &["firefox"]],
range: 1..=5,
};

Expand Down Expand Up @@ -144573,6 +144591,7 @@ static WORD_EXAP_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen:

pub static WORD_EXAP_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[
dictgen::InsensitiveStr::Ascii("anded"),
dictgen::InsensitiveStr::Ascii("anding"),
dictgen::InsensitiveStr::Ascii("ansion"),
dictgen::InsensitiveStr::Ascii("end"),
Expand All @@ -144594,6 +144613,7 @@ pub static WORD_EXAP_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
dictgen::InsensitiveStr::Ascii("nsive"),
],
values: &[
&["expanded"],
&["expanding"],
&["expansion"],
&["expand"],
Expand Down Expand Up @@ -163934,6 +163954,7 @@ pub static WORD_DEPL_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
dictgen::InsensitiveStr::Ascii("orible"),
dictgen::InsensitiveStr::Ascii("oyd"),
dictgen::InsensitiveStr::Ascii("oyement"),
dictgen::InsensitiveStr::Ascii("oyes"),
dictgen::InsensitiveStr::Ascii("oymenet"),
dictgen::InsensitiveStr::Ascii("oymenets"),
dictgen::InsensitiveStr::Ascii("oymnet"),
Expand All @@ -163954,6 +163975,7 @@ pub static WORD_DEPL_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
&["deplorable"],
&["deployed", "deploy"],
&["deployment"],
&["deploys"],
&["deployment"],
&["deployments"],
&["deployment"],
Expand Down Expand Up @@ -208485,9 +208507,12 @@ static WORD_ASL_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::
};

pub static WORD_ASL_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
keys: &[dictgen::InsensitiveStr::Ascii("o")],
values: &[&["also"]],
range: 1..=1,
keys: &[
dictgen::InsensitiveStr::Ascii("ias"),
dictgen::InsensitiveStr::Ascii("o"),
],
values: &[&["alias"], &["also"]],
range: 1..=3,
};

static WORD_ASK_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
Expand Down
Loading