Skip to content

Commit 39f678e

Browse files
authored
Merge pull request #1093 from kachick/grather-suggest-candidates
fix(dict): Add suggestions "greater" and "gather" for the typo "grather"
2 parents bb6905f + 786c825 commit 39f678e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/typos-dict/assets/words.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -28800,7 +28800,7 @@ grassrooters,grassroots
2880028800
grat,great
2880128801
gratefull,grateful
2880228802
gratful,grateful
28803-
grather
28803+
grather,greater,gather
2880428804
gratificacion,gratification
2880528805
gratificaiton,gratification
2880628806
gratituous,gratuitous

crates/typos-dict/src/word_codegen.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -130399,7 +130399,7 @@ pub static WORD_GRAT_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic
130399130399
values: &[
130400130400
&["grateful"],
130401130401
&["grateful"],
130402-
&[],
130402+
&["greater", "gather"],
130403130403
&["gratification"],
130404130404
&["gratification"],
130405130405
&["gratuitous"],

0 commit comments

Comments
 (0)