From 0577d07b47784a54e1d937ef19c7faf90321d60d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20F=2E=20Romaniello?= Date: Tue, 25 Mar 2014 09:11:39 -0300 Subject: [PATCH] missing parenthesis closes #7 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d387b3b..a245849 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ io.sockets .on('connection', socketioJwt.authorize({ secret: 'your secret or public key', timeout: 15000 // 15 seconds to send the authentication message - }).on('authenticated', function(socket) { + })).on('authenticated', function(socket) { //this socket is authenticated, we are good to handle more events from it. console.log('hello! ' + socket.decoded_token.name); })); @@ -76,4 +76,4 @@ npm test ## License Licensed under the MIT-License. -2013 AUTH10 LLC. \ No newline at end of file +2013 AUTH10 LLC.