diff options
| author | Kwang-in (Dennis) Jung <inylove82@gmail.com> | 2019-01-16 01:09:55 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-15 11:09:55 -0500 |
| commit | 0c74c8ebc40c61803d096bb8e590111f5d2733f9 (patch) | |
| tree | 8f3698bcbeb18af9131ced42c942c557e753e5d0 | |
| parent | f1ac2b9540174e150e7fc0d201cd661961f05143 (diff) | |
Improve http/README (denoland/deno_std#114)
Original: https://github.com/denoland/deno_std/commit/6c5bdc58bad12626152c5903e52c2457a5f81883
| -rwxr-xr-x | format.ts | 2 | ||||
| -rw-r--r-- | http/README.md | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -30,7 +30,7 @@ async function main() { args: [ "bash", "-c", - "prettier --write *.ts */*.ts */**/*.ts *.md */**/*.md" + "prettier --write *.ts */*.ts */**/*.ts *.md */*.md */**/*.md" ] }); const s = await prettier.status(); diff --git a/http/README.md b/http/README.md index e81e42a41..c598cdef4 100644 --- a/http/README.md +++ b/http/README.md @@ -1,6 +1,8 @@ -# net +# http -Usage: +A framework for creating HTTP/HTTPS server. + +## Example ```typescript import { serve } from "https://deno.land/x/http/mod.ts"; |
