diff options
author | Aleksandr Bukhalo <a@bukhalo.com> | 2022-03-25 14:30:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 12:30:20 +0100 |
commit | 84b1acf8baf34d8651b4d0e871072b40f321737f (patch) | |
tree | 83e8641bebd4887662a257d7e370f01bc560964b /cli/dts/lib.deno.ns.d.ts | |
parent | 25b73a366f8b114d05add8b93aa52beb321dcb6e (diff) |
docs(cli): fix typo in `PermissionOptionsObject` (#14114)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 99ce225f1..02f514673 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -117,10 +117,10 @@ declare namespace Deno { export type PermissionOptions = "inherit" | "none" | PermissionOptionsObject; export interface PermissionOptionsObject { - /** Specifies if the `net` permission should be requested or revoked. + /** Specifies if the `env` permission should be requested or revoked. * If set to `"inherit"`, the current `env` permission will be inherited. - * If set to `true`, the global `net` permission will be requested. - * If set to `false`, the global `net` permission will be revoked. + * If set to `true`, the global `env` permission will be requested. + * If set to `false`, the global `env` permission will be revoked. * * Defaults to `false`. */ |