summaryrefslogtreecommitdiff
path: root/docs/examples/http_server.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 10:49:41 -0700
committerGitHub <noreply@github.com>2020-09-27 13:49:41 -0400
commitd2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch)
tree63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/http_server.md
parenteaba9adb03f0427ecf0a7a8b6937a6b82e134266 (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.md8
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";