summaryrefslogtreecommitdiff
path: root/std/http/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/http/README.md')
-rw-r--r--std/http/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/http/README.md b/std/http/README.md
index 3383c0778..be41f4fe1 100644
--- a/std/http/README.md
+++ b/std/http/README.md
@@ -11,7 +11,7 @@ for await (const req of server) {
### File Server
-A small program for serving local files over HTTP
+A small program for serving local files over HTTP.
```sh
deno run --allow-net --allow-read https://deno.land/std/http/file_server.ts
@@ -35,7 +35,7 @@ console.log("cookies:", cookies);
// cookies: { full: "of", tasty: "chocolate" }
```
-To set a `Cookie` you can add `CookieOptions` to properly set your `Cookie`
+To set a `Cookie` you can add `CookieOptions` to properly set your `Cookie`:
```ts
import { Response } from "https://deno.land/std/http/server.ts";