fix(dict): Don't correct JST used in time zone abbreviations

* chore(dict): `SNAPSHOTS=overwrite cargo test --workspace`
This commit is contained in:
Kenichi Kamiya 2024-04-02 13:31:24 +09:00
parent 31cbc32eff
commit ebe1ec4842
No known key found for this signature in database
GPG key ID: 9BE4016A38165CCB
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 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 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 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.

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