diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /docs/runtime/compiler_apis.md | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'docs/runtime/compiler_apis.md')
-rw-r--r-- | docs/runtime/compiler_apis.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/runtime/compiler_apis.md b/docs/runtime/compiler_apis.md index c2d234836..31d0af2d1 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/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/http/server.ts", ); ``` @@ -151,7 +151,7 @@ const [errors, emitted] = await Deno.compile( }, { lib: ["dom", "esnext"], - } + }, ); ``` @@ -191,7 +191,7 @@ const [errors, emitted] = await Deno.compile( }, { lib: ["dom", "esnext", "deno.ns"], - } + }, ); ``` |