diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-28 17:23:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 17:23:05 +0200 |
commit | 065f9cc767153144429dfdab3feae06c10cfcbfc (patch) | |
tree | 9b977752b86adf6812ca87037a88b3c734b01e03 /runtime | |
parent | 56d5cb21b01c1f99be37856a6d73aded230fa487 (diff) |
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.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/worker_bootstrap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/worker_bootstrap.rs b/runtime/worker_bootstrap.rs index 07b093e44..a185c9693 100644 --- a/runtime/worker_bootstrap.rs +++ b/runtime/worker_bootstrap.rs @@ -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(), |