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): Don't correct OpenGraph's namespace #961

Merged
merged 1 commit into from Apr 1, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/typos-dict/assets/allowed.csv
Expand Up @@ -22,3 +22,4 @@ shttp,also a protocol
foldr,short for fold-right
eof,end-of-file in programming
eol,end-of-line in programming
og,OpenGraph which is used for previews of websites on social media
1 change: 0 additions & 1 deletion crates/typos-dict/assets/words.csv
Expand Up @@ -40836,7 +40836,6 @@ oftenly,often
ofter,after,offer,often
oftern,often
ofthen,often
og,of
oganization,organization
oger,ogre
ogerish,ogreish
Expand Down
2 changes: 1 addition & 1 deletion crates/typos-dict/src/word_codegen.rs
Expand Up @@ -82664,7 +82664,7 @@ pub static WORD_OH_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictg

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

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