diff options
author | Andrew Mitchell <32021055+mitch292@users.noreply.github.com> | 2020-12-12 07:15:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 13:15:50 +0100 |
commit | c05615d6707a6270113a514888e828e536ea2c35 (patch) | |
tree | a95b4f0796be08e8a8db88229e305c021c954d3a /cli/dts/lib.deno.unstable.d.ts | |
parent | 31935c6b8d8f763a5cf809b940427024da01a71c (diff) |
docs: Remove a deprecated function from docstring for Deno.permissions (#8729)
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 d8e226699..f9ef1fb2f 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1143,7 +1143,7 @@ declare namespace Deno { * ```ts * const status = await Deno.permissions.request({ name: "env" }); * if (status.state === "granted") { - * console.log(Deno.dir("home")); + * console.log("'env' permission is granted."); * } else { * console.log("'env' permission is denied."); * } |