Explorar o código

Add missing semicolon in simplehttpserver.js

Tristan VALCKE %!s(int64=8) %!d(string=hai) anos
pai
achega
f787058cee
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      utils/servers/simplehttpserver.js

+ 2 - 2
utils/servers/simplehttpserver.js

@@ -95,7 +95,7 @@ http.createServer(handleRequest).listen(port);
 
 require('dns').lookup(require('os').hostname(), function (err, addr, fam) {
  	console.log('Running at http://' + addr  + ((port === 80) ? '' : ':') + port + '/');
-})
+});
 
 console.log('Three.js server has started...');
-console.log('Base directory at ' + currentDir);
+console.log('Base directory at ' + currentDir);