diff options
author | Kerollos Magdy <kerolloz@yahoo.com> | 2020-05-14 17:34:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 11:34:13 -0400 |
commit | a2ba5a31a5ec8e011bb78baf531e29de4428b32e (patch) | |
tree | ee93e10d06fb5e90dc8b5a3cd497ff6b9c326c78 | |
parent | 676be6632c113b61d95e9a0897c4810d63e479b2 (diff) |
Remove extra dollar sign from docs (#5361)
-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: |