Fix typo in web socket readme

This commit is contained in:
Tim Vermeulen 2018-09-01 17:28:06 +02:00 committed by GitHub
parent 7241465e00
commit b3267809a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()
```