From c592dc6b52f5dec414e9ee431f2a8f66554ec723 Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Fri, 24 Mar 2017 20:16:36 -0400 Subject: [PATCH] fixes typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4fd1728..c1b1466 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ A socket.io server included will listen on port 9077 by default. Using the socke Example (in node): -` +``` var client = require('socket.io-client').connect('ws://localhost:9077'); client.emit('createInstances', 3, (error) => { if (error) return; @@ -45,7 +45,7 @@ Example (in node): client.emit('newIps'); console.log('clients have new ips!') }); -` +``` ## Test