diff options
Diffstat (limited to 'cli/deno_std.rs')
-rw-r--r-- | cli/deno_std.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/deno_std.rs b/cli/deno_std.rs index a8bee6a01..1c99eda08 100644 --- a/cli/deno_std.rs +++ b/cli/deno_std.rs @@ -8,4 +8,4 @@ use once_cell::sync::Lazy; static CURRENT_STD_URL_STR: &str = "https://deno.land/std@0.172.0/"; pub static CURRENT_STD_URL: Lazy<Url> = - Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).unwrap()); + Lazy::new(|| Url::parse(CURRENT_STD_URL_STR).expect("invalid std url")); |