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:
Ed Page 2024-04-02 10:04:45 -05:00 committed by GitHub
commit 28586152dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 10 deletions

View file

@ -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 nilable used in ruby community
23 eof end-of-file in programming
24 eol end-of-line in programming
25 og OpenGraph which is used for previews of websites on social media
26 jst abbreviation of Japan Standard Time in tz database

View file

@ -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.

View file

@ -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 {