Skip to content

Commit

Permalink
Merge pull request #961 from epage/og
Browse files Browse the repository at this point in the history
fix(dict): Don't correct OpenGraph's namespace
  • Loading branch information
epage committed Apr 1, 2024
2 parents 1d491b8 + 37254d2 commit 60f3c38
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
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

0 comments on commit 60f3c38

Please sign in to comment.