diff options
author | Ganesh R <ganesramesh110@gmail.com> | 2020-05-08 17:59:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 14:29:03 +0200 |
commit | c0e8bae498b1892b994757b5f4972913c076a65e (patch) | |
tree | c502cb3a5c638cd13277ba73bf7e6c2f05d754e2 | |
parent | 5fea4e826cc106e2c42fb279a7115a52572aa907 (diff) |
doc: fix typo on first_steps.md (#5149)
-rw-r--r-- | docs/getting_started/first_steps.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md index 13118a2cf..fb5b74a0b 100644 --- a/docs/getting_started/first_steps.md +++ b/docs/getting_started/first_steps.md @@ -67,7 +67,7 @@ deno run https://deno.land/std/examples/curl.ts https://example.com You will see that this program returns an error regarding network access, so what did we do wrong? You might remember from the introduction that Deno is a runtime that is secure by default. This means that you need to explicitly give -programs the permission to do certain 'privledged' actions like network access. +programs the permission to do certain 'privileged' actions like network access. Try it out again with the correct permission flag: |