summaryrefslogtreecommitdiff
path: root/std/http/README.md
diff options
context:
space:
mode:
authorzjopy <33468089+zjopy@users.noreply.github.com>2020-05-07 13:48:48 +0200
committerGitHub <noreply@github.com>2020-05-07 13:48:48 +0200
commit761b7efb3b8a140caad12803619a2e8a535cc178 (patch)
treec046d2fe25453713284e1670f10ceae05bac2673 /std/http/README.md
parent34ec3b225425cecdccf754fbc87f4a8f3728890d (diff)
fix(docs): add missing "deno run" (#5126)
Diffstat (limited to 'std/http/README.md')
-rw-r--r--std/http/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/README.md b/std/http/README.md
index 993b46cb8..4e30a3a56 100644
--- a/std/http/README.md
+++ b/std/http/README.md
@@ -14,7 +14,7 @@ for await (const req of s) {
A small program for serving local files over HTTP
```sh
-deno --allow-net --allow-read https://deno.land/std/http/file_server.ts
+deno run --allow-net --allow-read https://deno.land/std/http/file_server.ts
> HTTP server listening on http://0.0.0.0:4500/
```