From 576f14baebae5c86b4d07722cd68de2a4c8f4790 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Tue, 11 May 2021 13:42:26 +0800 Subject: [PATCH] docs(cli/dts): fix Deno.test permission examples (#10571) --- cli/dts/lib.deno.unstable.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 14c7a36ddb..f8b55f87c3 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1230,7 +1230,7 @@ declare namespace Deno { * const status = await Deno.permissions.query({ name: "net" }) * assertEquals(status.state, "granted"); * }, - * }; + * }); * ``` * * ```ts @@ -1243,7 +1243,7 @@ declare namespace Deno { * const status = await Deno.permissions.query({ name: "net" }); * assertEquals(status.state, "granted"); * }, - * }; + * }); * ``` * * ```ts @@ -1256,7 +1256,7 @@ declare namespace Deno { * const status = await Deno.permissions.query({ name: "net" }); * assertEquals(status.state, "denied"); * }, - * }; + * }); * ``` * * ``` @@ -1269,7 +1269,7 @@ declare namespace Deno { * const status = await Deno.permissions.query({ name: "net", host: "localhost:8080" }); * assertEquals(status.state, "granted"); * }, - * }; + * }); * ``` */ net?: "inherit" | boolean | string[];