diff options
Diffstat (limited to 'website/manual.md')
-rw-r--r-- | website/manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/manual.md b/website/manual.md index ec5612372..bb75114c4 100644 --- a/website/manual.md +++ b/website/manual.md @@ -421,11 +421,11 @@ $ deno --allow-read=/etc https://deno.land/std/examples/cat.ts /etc/passwd This is an example to restrict host. ```ts -const result = await fetch("https://deno.land/std/examples/echo_server.ts"); +const result = await fetch("https://deno.land/"); ``` ```shell -$ deno --allow-net=deno.land allow-net-whitelist-example.ts +$ deno --allow-net=deno.land https://deno.land/std/examples/curl.ts https://deno.land/ ``` ### Run subprocess |