summaryrefslogtreecommitdiff
path: root/Docs.md
diff options
context:
space:
mode:
Diffstat (limited to 'Docs.md')
-rw-r--r--Docs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs.md b/Docs.md
index feda02027..e9750ffb2 100644
--- a/Docs.md
+++ b/Docs.md
@@ -66,7 +66,7 @@ The copy here is actually zero-copy. That is, it reads data from the socket and
writes it back to it without ever calling a memcpy() or similar.
```ts
-import { listen, accept, copy } from "deno";
+import { listen, copy } from "deno";
const listener = listen("tcp", ":8080");
while (true) {
const conn = await listener.accept();