Corrected minor typo

This commit is contained in:
Johan Hammar 2017-03-28 22:44:47 +02:00
parent e3456cb74f
commit cc9a429689

View File

@ -15,7 +15,7 @@ var fs = require("fs");
var helmet = require("helmet");
var Server = function(config, callback) {
console.log("Starting server op port " + config.port + " ... ");
console.log("Starting server on port " + config.port + " ... ");
server.listen(config.port, config.address ? config.address : null);