diff --git a/examples/sourcemap-auto-resolve/API.js b/examples/sourcemap-auto-resolve/API.js index adf4e68e..99ed0592 100644 --- a/examples/sourcemap-auto-resolve/API.js +++ b/examples/sourcemap-auto-resolve/API.js @@ -150,7 +150,7 @@ API.prototype.connect = function(noDaemon, cb) { return cb(err, meta); // If new pm2 instance has been popped - // Lauch all modules + // Launch all modules Modularizer.launchAll(that, function(err_mod) { return cb(err, meta); }); diff --git a/lib/API.js b/lib/API.js index e72d72a5..945c822d 100644 --- a/lib/API.js +++ b/lib/API.js @@ -182,7 +182,7 @@ class API { that.launchSysMonitoring(() => {}) // If new pm2 instance has been popped - // Lauch all modules + // Launch all modules that.launchAll(that, function(err_mod) { return cb(err, meta); }); diff --git a/lib/binaries/CLI.js b/lib/binaries/CLI.js index 00209a90..0913cf5c 100644 --- a/lib/binaries/CLI.js +++ b/lib/binaries/CLI.js @@ -881,7 +881,7 @@ commander.command('logs [id|name|namespace]') .option('--out', 'only shows standard output') .option('--lines ', 'output the last N lines, instead of the last 15 by default') .option('--timestamp [format]', 'add timestamps (default format YYYY-MM-DD-HH:mm:ss)') - .option('--nostream', 'print logs without lauching the log stream') + .option('--nostream', 'print logs without launching the log stream') .option('--highlight [value]', 'highlights the given value') .description('stream logs file. Default stream all logs') .action(function(id, cmd) {