diff options
author | Andy Hayden <andyhayden1@gmail.com> | 2019-03-06 07:23:47 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-06 10:23:47 -0500 |
commit | 91364cabae8687e7620edac406b43cb40cb55878 (patch) | |
tree | d7a86dd3a8cc7d70cf07e1fccde2a6e5f4971281 /src | |
parent | 4f623e37c58dc8ab6fff7fd3c5588eb9708c7952 (diff) |
Replace deno.land/x/std with deno.land/std (#1890)
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 23efa50ee..48d96b04a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,7 +86,7 @@ fn main() { }); if flags.fmt { - rest_argv.insert(1, "https://deno.land/x/std/prettier/main.ts".to_string()); + rest_argv.insert(1, "https://deno.land/std/prettier/main.ts".to_string()); flags.allow_read = true; flags.allow_write = true; } |