mirror of
https://github.com/crate-ci/typos.git
synced 2024-12-22 23:52:12 -05:00
refactor(dict): Remove useless entries
This commit is contained in:
parent
c917ed845a
commit
7a2a5042a1
2 changed files with 5 additions and 25 deletions
8
crates/typos-dict/assets/words.csv
vendored
8
crates/typos-dict/assets/words.csv
vendored
|
@ -240,8 +240,6 @@ authobiographic,autobiographic
|
||||||
awknowledgement,acknowledgement
|
awknowledgement,acknowledgement
|
||||||
bureaucratische,bureaucratic
|
bureaucratische,bureaucratic
|
||||||
cardiovascualar,cardiovascular
|
cardiovascualar,cardiovascular
|
||||||
carnagie-mellon,carnegie-mellon
|
|
||||||
carnigie-mellon,carnegie-mellon
|
|
||||||
celebrationists,celebrations
|
celebrationists,celebrations
|
||||||
charactaristics,characteristics
|
charactaristics,characteristics
|
||||||
characterisitcs,characteristics
|
characterisitcs,characteristics
|
||||||
|
@ -11263,7 +11261,6 @@ climatiser,climates
|
||||||
clincially,clinically
|
clincially,clinically
|
||||||
clitoridis,clitoris
|
clitoridis,clitoris
|
||||||
clitorious,clitoris
|
clitorious,clitoris
|
||||||
co-incided,coincided
|
|
||||||
cockroachs,cockroaches
|
cockroachs,cockroaches
|
||||||
cockroahes,cockroaches
|
cockroahes,cockroaches
|
||||||
coefficent,coefficient
|
coefficent,coefficient
|
||||||
|
@ -17307,7 +17304,6 @@ clitorius,clitoris
|
||||||
clucthing,clutching
|
clucthing,clutching
|
||||||
clutchign,clutching
|
clutchign,clutching
|
||||||
cluthcing,clutching
|
cluthcing,clutching
|
||||||
coca cola,coca-cola
|
|
||||||
cockatils,cocktails
|
cockatils,cocktails
|
||||||
cocktials,cocktails
|
cocktials,cocktails
|
||||||
cognizent,cognizant
|
cognizent,cognizant
|
||||||
|
@ -18900,7 +18896,6 @@ nessecary,necessary
|
||||||
newcaslte,newcastle
|
newcaslte,newcastle
|
||||||
newcastel,newcastle
|
newcastel,newcastle
|
||||||
nieghbour,neighbour
|
nieghbour,neighbour
|
||||||
nightfa;;,nightfall
|
|
||||||
nightlcub,nightclub
|
nightlcub,nightclub
|
||||||
nigthclub,nightclub
|
nigthclub,nightclub
|
||||||
nigthlife,nightlife
|
nigthlife,nightlife
|
||||||
|
@ -24748,7 +24743,7 @@ algerba,algebra
|
||||||
alienet,alienate
|
alienet,alienate
|
||||||
alledge,allege
|
alledge,allege
|
||||||
allegry,allergy
|
allegry,allergy
|
||||||
alltime,all-time
|
alltime
|
||||||
almighy,almighty
|
almighy,almighty
|
||||||
alochol,alcohol
|
alochol,alcohol
|
||||||
alotted,allotted
|
alotted,allotted
|
||||||
|
@ -27551,7 +27546,6 @@ offred,offered
|
||||||
omited,omitted
|
omited,omitted
|
||||||
ouevre,oeuvre
|
ouevre,oeuvre
|
||||||
oxigen,oxygen
|
oxigen,oxygen
|
||||||
p0enis,penis
|
|
||||||
packge,package
|
packge,package
|
||||||
peaple,people
|
peaple,people
|
||||||
pensle,pencil
|
pensle,pencil
|
||||||
|
|
Can't render this file because it is too large.
|
|
@ -8,23 +8,9 @@ pub static WORD_TRIE: dictgen::DictTrie<&'static [&'static str]> = dictgen::Dict
|
||||||
};
|
};
|
||||||
|
|
||||||
pub static WORD_UNICODE_TABLE: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
pub static WORD_UNICODE_TABLE: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||||
keys: &[
|
keys: &[],
|
||||||
dictgen::InsensitiveStr::Ascii("carnagie-mellon"),
|
values: &[],
|
||||||
dictgen::InsensitiveStr::Ascii("carnigie-mellon"),
|
range: 0..=0,
|
||||||
dictgen::InsensitiveStr::Ascii("co-incided"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("coca cola"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("nightfa;;"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("p0enis"),
|
|
||||||
],
|
|
||||||
values: &[
|
|
||||||
&["carnegie-mellon"],
|
|
||||||
&["carnegie-mellon"],
|
|
||||||
&["coincided"],
|
|
||||||
&["coca-cola"],
|
|
||||||
&["nightfall"],
|
|
||||||
&["penis"],
|
|
||||||
],
|
|
||||||
range: 6..=15,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static WORD_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
static WORD_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||||
|
@ -88918,7 +88904,7 @@ pub static WORD_ALL_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dict
|
||||||
&["allophones"],
|
&["allophones"],
|
||||||
&["already"],
|
&["already"],
|
||||||
&["although"],
|
&["although"],
|
||||||
&["all-time"],
|
&[],
|
||||||
&["altogether"],
|
&["altogether"],
|
||||||
],
|
],
|
||||||
range: 3..=9,
|
range: 3..=9,
|
||||||
|
|
Loading…
Reference in a new issue