diff options
Diffstat (limited to 'docs/runtime/compiler_apis.md')
-rw-r--r-- | docs/runtime/compiler_apis.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime/compiler_apis.md b/docs/runtime/compiler_apis.md index 31d0af2d1..8379d1b0d 100644 --- a/docs/runtime/compiler_apis.md +++ b/docs/runtime/compiler_apis.md @@ -48,7 +48,7 @@ could do on the command line. So you could do something like this: ```ts const [diagnostics, emitMap] = await Deno.compile( - "https://deno.land/std/examples/welcome.ts", + "https://deno.land/std@$STD_VERSION/examples/welcome.ts", ); ``` @@ -95,7 +95,7 @@ could do on the command line. So you could do something like this: ```ts const [diagnostics, emit] = await Deno.bundle( - "https://deno.land/std/http/server.ts", + "https://deno.land/std@$STD_VERSION/http/server.ts", ); ``` |