summaryrefslogtreecommitdiff
path: root/docs/runtime
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-01-07 10:52:30 +0000
committerGitHub <noreply@github.com>2021-01-07 05:52:30 -0500
commitb5f1d257a3fb816dbf828da3dca0389e6cee2bb0 (patch)
tree752dc204793d4389bbc4e886b0dbd68e2cc24029 /docs/runtime
parentcb658f5ce588dfac4826a5ce4d343738759c0c84 (diff)
fix: Use "none" instead of false to sandbox Workers (#9034)
Diffstat (limited to 'docs/runtime')
-rw-r--r--docs/runtime/workers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/workers.md b/docs/runtime/workers.md
index caed638b0..14e028705 100644
--- a/docs/runtime/workers.md
+++ b/docs/runtime/workers.md
@@ -241,7 +241,7 @@ the `deno.permissions` option in the worker API.
type: "module",
deno: {
namespace: true,
- permissions: false,
+ permissions: "none",
},
});
```