From 586667661754587bbe0e9907f5c515b7f3ff17fc Mon Sep 17 00:00:00 2001 From: Blake Barrett Date: Thu, 7 Dec 2017 16:44:04 -0800 Subject: [PATCH] Update README.md Fix a typo in one of the code samples. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c75a18b..004fcd50 100644 --- a/README.md +++ b/README.md @@ -351,7 +351,7 @@ In most cases you do not need the extra info and should use the normal delegate. #### websocketDidReceiveMessage ```swift -func websocketDidReceiveMessage(socket: WebSocketClient, text: String, response: WebSocket.WSResponse { +func websocketDidReceiveMessage(socket: WebSocketClient, text: String, response: WebSocket.WSResponse) { print("got some text: \(text)") print("First frame for this message arrived on \(response.firstFrame)") }