Skip to content

Commit

Permalink
Merge pull request #983 from alatiera/alatiera/hd
Browse files Browse the repository at this point in the history
Don't correct `HD`
  • Loading branch information
epage committed Apr 9, 2024
2 parents c15b28f + 90c1c0f commit 5035c90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion crates/typos-dict/assets/allowed.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
nilable,used in ruby community
thead,html tag
hardlinked,filesystem term
hd, abbreviation for High Definition
referer,http header field
deques,noun
dequeues,verb
Expand Down Expand Up @@ -33,4 +34,4 @@ ro,acronym for read-only
dur,abbreviation for duration
ang,abbreviation for angle
lst,abbreviation for list especially when list is a built-in like Python
ans,abbrevation for answer
ans,abbreviation for answer
1 change: 0 additions & 1 deletion crates/typos-dict/assets/words.csv
Original file line number Diff line number Diff line change
Expand Up @@ -28613,7 +28613,6 @@ havve,have
hax,hex
haynus,heinous
hazzle,hassle
hd,had
hda,had
hdinsight,hindsight
heacy,heavy
Expand Down
2 changes: 1 addition & 1 deletion crates/typos-dict/src/word_codegen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123631,7 +123631,7 @@ pub static WORD_HEAC_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dic

static WORD_HD_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
children: dictgen::DictTrieChild::Flat(&WORD_HD_CHILDREN),
value: Some(&["had"]),
value: None,
};

pub static WORD_HD_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
Expand Down

0 comments on commit 5035c90

Please sign in to comment.