mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
Merge pull request #964 from kachick/fix-detecting-jst
fix(dict): Don't correct JST used in time zone abbreviations
This commit is contained in:
commit
28586152dd
3 changed files with 3 additions and 10 deletions
1
crates/typos-dict/assets/allowed.csv
vendored
1
crates/typos-dict/assets/allowed.csv
vendored
|
@ -23,3 +23,4 @@ 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
|
||||
jst,abbreviation of Japan Standard Time in tz database
|
||||
|
|
|
1
crates/typos-dict/assets/words.csv
vendored
1
crates/typos-dict/assets/words.csv
vendored
|
@ -34234,7 +34234,6 @@ joystik,joystick
|
|||
jpin,join
|
||||
jpng,png,jpg,jpeg
|
||||
jscipt,jscript
|
||||
jst,just
|
||||
jstu,just
|
||||
jsut,just
|
||||
jsutification,justifications
|
||||
|
|
Can't render this file because it is too large.
|
|
@ -104889,19 +104889,12 @@ static WORD_JS_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::D
|
|||
pub static WORD_JS_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||
keys: &[
|
||||
dictgen::InsensitiveStr::Ascii("cipt"),
|
||||
dictgen::InsensitiveStr::Ascii("t"),
|
||||
dictgen::InsensitiveStr::Ascii("tu"),
|
||||
dictgen::InsensitiveStr::Ascii("ut"),
|
||||
dictgen::InsensitiveStr::Ascii("utification"),
|
||||
],
|
||||
values: &[
|
||||
&["jscript"],
|
||||
&["just"],
|
||||
&["just"],
|
||||
&["just"],
|
||||
&["justifications"],
|
||||
],
|
||||
range: 1..=11,
|
||||
values: &[&["jscript"], &["just"], &["just"], &["justifications"]],
|
||||
range: 2..=11,
|
||||
};
|
||||
|
||||
static WORD_JP_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||
|
|
Loading…
Reference in a new issue