From a02bd3f25c40cbe5bbe32e5ce7c93c62bac203ee Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Tue, 15 Jan 2019 09:36:43 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae24d970..8da9d4a1 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ server.setOnConnectionCallback( } else if (messageType == ix::WebSocket_MessageType_Message) { - // For an echo server, we just send back to the client whatever was received by the client + // For an echo server, we just send back to the client whatever was received by the server // All connected clients are available in an std::set. See the broadcast cpp example. webSocket->send(str); }