summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKwang-in (Dennis) Jung <inylove82@gmail.com>2019-01-16 01:09:55 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-01-15 11:09:55 -0500
commit0c74c8ebc40c61803d096bb8e590111f5d2733f9 (patch)
tree8f3698bcbeb18af9131ced42c942c557e753e5d0
parentf1ac2b9540174e150e7fc0d201cd661961f05143 (diff)
Improve http/README (denoland/deno_std#114)
Original: https://github.com/denoland/deno_std/commit/6c5bdc58bad12626152c5903e52c2457a5f81883
-rwxr-xr-xformat.ts2
-rw-r--r--http/README.md6
2 files changed, 5 insertions, 3 deletions
diff --git a/format.ts b/format.ts
index f1fa19e23..2e7b9a606 100755
--- a/format.ts
+++ b/format.ts
@@ -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";