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

Don't correct HD #983

Merged
merged 2 commits into from
Apr 9, 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
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
alatiera marked this conversation as resolved.
Show resolved Hide resolved
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
Loading