From fbaa40f6dcf67bf1113f3d4d8f600d2f73e01414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BF=B7=E6=B8=A1?= Date: Wed, 14 Nov 2018 15:36:48 +0800 Subject: fix code sample in Docs --- Docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit v1.2.3