diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 10:49:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 13:49:41 -0400 |
commit | d2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch) | |
tree | 63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/http_server.md | |
parent | eaba9adb03f0427ecf0a7a8b6937a6b82e134266 (diff) |
doc: end sentences with a period in examples (#7722)
Diffstat (limited to 'docs/examples/http_server.md')
-rw-r--r-- | docs/examples/http_server.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples/http_server.md b/docs/examples/http_server.md index 21a9f8b5b..5c793c6ea 100644 --- a/docs/examples/http_server.md +++ b/docs/examples/http_server.md @@ -3,7 +3,7 @@ ## Concepts - Use the std library [http module](https://deno.land/std@$STD_VERSION/http) to - run your own web server + run your own web server. ## Overview @@ -12,11 +12,11 @@ over the response status, request headers and more. ## Sample web server -In this example, the user-agent of the client is returned to the client +In this example, the user-agent of the client is returned to the client: ```typescript -/** - * webserver.ts +/** + * webserver.ts */ import { serve } from "https://deno.land/std@$STD_VERSION/http/server.ts"; |