From 15c7e194600751e32e050e6b87dffb4e0bea3d4f Mon Sep 17 00:00:00 2001 From: Naoyuki Kanezawa Date: Sat, 8 Feb 2014 16:20:27 +0900 Subject: [PATCH] update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ed1730..4a0354e 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,12 @@ socket.on("foo", new Emitter.Listener() { }); ``` -Options are supplied as follow: +Options are supplied as follows: ```java IO.Options opts = new IO.Options(); opts.forceNew = true; -opts.cookie = "foo=1;"; +opts.reconnection = false; socket = IO.socket("http://localhost", opts); ```