From b3267809a776af8d22744d4200a00a7c41a232dc Mon Sep 17 00:00:00 2001 From: Tim Vermeulen Date: Sat, 1 Sep 2018 17:28:06 +0200 Subject: [PATCH] Fix typo in web socket readme --- 3.0/docs/websocket/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3.0/docs/websocket/overview.md b/3.0/docs/websocket/overview.md index 2a5cfa9a..a3ac8145 100644 --- a/3.0/docs/websocket/overview.md +++ b/3.0/docs/websocket/overview.md @@ -82,7 +82,7 @@ ws.onText { ws, text in // Send a message. ws.send("Hello, world!") -// Wait for the Websocket to closre. +// Wait for the Websocket to close. try ws.onClose.wait() ```