From 9b007b1a6acc9caccf0b46746bab7e4098d755be Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Thu, 27 Sep 2018 15:43:31 -0700 Subject: [PATCH] doc tweak --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cefd363c..ccb07741 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,6 @@ webSocket.setOnMessageCallback( The url can be set and queried after a websocket object has been created. You will have to call `stop` and `start` if you want to disconnect and connect to that new url. ``` -std::string url = 'wss://example.com' +std::string url("wss://example.com"); websocket.configure(url); ```