Fix typos and some whitespaces

This commit is contained in:
rejas
2019-06-04 09:33:53 +02:00
parent caf56671dc
commit 99b4c43fd5
5 changed files with 13 additions and 16 deletions

View File

@@ -48,7 +48,6 @@ var App = function() {
*
* argument callback function - The callback function.
*/
var loadConfig = function(callback) {
console.log("Loading config ...");
var defaults = require(__dirname + "/defaults.js");
@@ -173,7 +172,7 @@ var App = function() {
};
/* cmpVersions(a,b)
* Compare two symantic version numbers and return the difference.
* Compare two semantic version numbers and return the difference.
*
* argument a string - Version number a.
* argument a string - Version number b.
@@ -197,7 +196,7 @@ var App = function() {
/* start(callback)
* This methods starts the core app.
* It loads the config, then it loads all modules.
* When it"s done it executs the callback with the config as argument.
* When it's done it executes the callback with the config as argument.
*
* argument callback function - The callback function.
*/
@@ -231,7 +230,6 @@ var App = function() {
if (typeof callback === "function") {
callback(config);
}
});
});
});