diff options
Diffstat (limited to 'http/README.md')
-rw-r--r-- | http/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http/README.md b/http/README.md index 0f53dc76b..d359f417a 100644 --- a/http/README.md +++ b/http/README.md @@ -4,7 +4,7 @@ A framework for creating HTTP/HTTPS server. ## Cookie -Helper to manipulate `Cookie` throught `ServerRequest` and `Response`. +Helper to manipulate `Cookie` through `ServerRequest` and `Response`. ```ts import { ServerRequest } from "https://deno.land/std/http/server.ts"; @@ -72,6 +72,6 @@ A small program for serving local files over HTTP. Add the following to your `.bash_profile` -``` +```sh alias file_server="deno run --allow-net https://deno.land/std/http/file_server.ts" ``` |