summaryrefslogtreecommitdiff
path: root/docs/runtime/compiler_apis.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/runtime/compiler_apis.md')
-rw-r--r--docs/runtime/compiler_apis.md8
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"],
- }
+ },
);
```