diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-10-03 13:19:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 07:19:11 +1100 |
commit | d0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch) | |
tree | 627339e0dc2212ed861184d46b6af31605224d24 /std/http/README.md | |
parent | 391eed42f41bd277fff936192b474bfd52eaa1a0 (diff) |
docs: end sentences with a period in markdown (#7813)
Diffstat (limited to 'std/http/README.md')
-rw-r--r-- | std/http/README.md | 4 |
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"; |