Merge pull request #256 from mhsjlw/patch-1

Colons are supposed to be next to the closest char
This commit is contained in:
Robin Lambertz 2015-09-25 01:38:13 +02:00
commit d719976835

View File

@ -148,7 +148,7 @@ function createServer(options) {
} }
if(client.protocolVersion!=version.version) if(client.protocolVersion!=version.version)
{ {
client.end("Wrong protocol version, expected : "+version.version+" and you are using : "+client.protocolVersion); client.end("Wrong protocol version, expected: "+version.version+" and you are using: "+client.protocolVersion);
} }
} }