From dcd01dd02530df0e799eb4227087680ffeb80d74 Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Wed, 24 Apr 2019 13:41:23 +0200 Subject: Eslint fixes (denoland/deno_std#356) Make warnings fail Original: https://github.com/denoland/deno_std/commit/4543b563a9a01c8c168aafcbfd9d4634effba7fc --- examples/ws.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/ws.ts') diff --git a/examples/ws.ts b/examples/ws.ts index 83e890bc0..f5965b7eb 100644 --- a/examples/ws.ts +++ b/examples/ws.ts @@ -10,7 +10,7 @@ async function main(): Promise { console.log("websocket server is running on 0.0.0.0:8080"); for await (const req of serve("0.0.0.0:8080")) { if (req.url === "/ws") { - (async () => { + (async (): Promise => { const sock = await acceptWebSocket(req); console.log("socket connected!"); for await (const ev of sock.receive()) { -- cgit v1.2.3