diff options
author | Chayim Refael Friedman <chayimfr@gmail.com> | 2020-11-25 13:54:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 12:54:38 +0100 |
commit | f42adf227745d7260183a114d35bd06e8589641d (patch) | |
tree | 848244b85e6efa9a14325f1ef21185ef639c1729 /cli/dts/lib.deno.unstable.d.ts | |
parent | a08d2eee2b4adf0cdf6d9c8a475beff6ee1df29b (diff) |
docs: Add missing closing parenthesis (#8477)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 044e1b4e2..667b1fbba 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1131,7 +1131,7 @@ declare namespace Deno { * ```ts * const status = await Deno.permissions.request({ name: "env" }); * if (status.state === "granted") { - * console.log(Deno.dir("home"); + * console.log(Deno.dir("home")); * } else { * console.log("'env' permission is denied."); * } |