diff options
-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 9c51cf8d9..20635a9b2 100644 --- a/docs/getting_started/first_steps.md +++ b/docs/getting_started/first_steps.md @@ -124,7 +124,7 @@ For security reasons, Deno does not allow programs to access the network without explicit permission. To allow accessing the network, use a command-line flag: ```shell -$ deno run --allow-net https://deno.land/std/examples/echo_server.ts +deno run --allow-net https://deno.land/std/examples/echo_server.ts ``` To test it, try sending data to it with netcat: |