diff options
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"; |