Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove extra space
  • Loading branch information
ericz committed Jan 15, 2013
1 parent 5827b41 commit 6862f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.js
Expand Up @@ -17,7 +17,7 @@ function BinaryServer(options) {
this.clients = {};
this._clientCounter = 0;

this._server = new ws.Server(options);
this._server = new ws.Server(options);
this._server.on('connection', function(socket){
var clientId = self._clientCounter;
var binaryClient = new BinaryClient(socket, options);
Expand Down

0 comments on commit 6862f6c

Please sign in to comment.