From cde4dbb35132848ffece59ef9cfaccff32347124 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Jul 2020 15:24:17 -0400 Subject: Use dprint for internal formatting (#6682) --- docs/runtime/compiler_apis.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/runtime/compiler_apis.md') 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"], - } + }, ); ``` -- cgit v1.2.3