mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -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
|
eof,end-of-file in programming
|
||||||
eol,end-of-line in programming
|
eol,end-of-line in programming
|
||||||
og,OpenGraph which is used for previews of websites on social media
|
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
|
jpin,join
|
||||||
jpng,png,jpg,jpeg
|
jpng,png,jpg,jpeg
|
||||||
jscipt,jscript
|
jscipt,jscript
|
||||||
jst,just
|
|
||||||
jstu,just
|
jstu,just
|
||||||
jsut,just
|
jsut,just
|
||||||
jsutification,justifications
|
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 {
|
pub static WORD_JS_CHILDREN: dictgen::DictTable<&'static [&'static str]> = dictgen::DictTable {
|
||||||
keys: &[
|
keys: &[
|
||||||
dictgen::InsensitiveStr::Ascii("cipt"),
|
dictgen::InsensitiveStr::Ascii("cipt"),
|
||||||
dictgen::InsensitiveStr::Ascii("t"),
|
|
||||||
dictgen::InsensitiveStr::Ascii("tu"),
|
dictgen::InsensitiveStr::Ascii("tu"),
|
||||||
dictgen::InsensitiveStr::Ascii("ut"),
|
dictgen::InsensitiveStr::Ascii("ut"),
|
||||||
dictgen::InsensitiveStr::Ascii("utification"),
|
dictgen::InsensitiveStr::Ascii("utification"),
|
||||||
],
|
],
|
||||||
values: &[
|
values: &[&["jscript"], &["just"], &["just"], &["justifications"]],
|
||||||
&["jscript"],
|
range: 2..=11,
|
||||||
&["just"],
|
|
||||||
&["just"],
|
|
||||||
&["just"],
|
|
||||||
&["justifications"],
|
|
||||||
],
|
|
||||||
range: 1..=11,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static WORD_JP_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
static WORD_JP_NODE: dictgen::DictTrieNode<&'static [&'static str]> = dictgen::DictTrieNode {
|
||||||
|
|
Loading…
Reference in a new issue