mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
fix: change default locale value (#16463)
Pointed by @zbraniecki in https://github.com/denoland/deno/pull/12322#discussion_r1007416061, I made a mistake with default locale value.
This commit is contained in:
parent
56d5cb21b0
commit
065f9cc767
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ impl Default for BootstrapOptions {
|
|||
enable_testing_features: Default::default(),
|
||||
debug_flag: Default::default(),
|
||||
ts_version: Default::default(),
|
||||
locale: "en-EN".to_string(),
|
||||
locale: "en".to_string(),
|
||||
location: Default::default(),
|
||||
unstable: Default::default(),
|
||||
inspect: Default::default(),
|
||||
|
|
Loading…
Reference in a new issue