summaryrefslogtreecommitdiff
path: root/ext/flash/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'ext/flash/README.md')
-rw-r--r--ext/flash/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/flash/README.md b/ext/flash/README.md
index 465c60d47..bc3c12065 100644
--- a/ext/flash/README.md
+++ b/ext/flash/README.md
@@ -3,5 +3,5 @@
Flash is a fast HTTP/1.1 server implementation for Deno.
```js
-serve((req) => new Response("Hello World"));
+serve({ fetch: (req) => new Response("Hello World") });
```