Skip to content

Commit

Permalink
docs: Add missing closing parenthesis (denoland#8477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChayimFriedman2 authored Nov 25, 2020
1 parent a08d2ee commit f42adf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.unstable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
* }
Expand Down

0 comments on commit f42adf2

Please sign in to comment.