From f30bf970b157de5133e28795e0bde315a125a8a1 Mon Sep 17 00:00:00 2001 From: DarthCharles Date: Sun, 11 Oct 2015 22:05:32 -0700 Subject: [PATCH] style: small spelling fix style: small spelling fix --- lib/browser.js | 2 +- lib/launchers/process.js | 2 +- lib/logger.js | 2 +- lib/middleware/strip_host.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/browser.js b/lib/browser.js index d26acefce..b3ee16612 100644 --- a/lib/browser.js +++ b/lib/browser.js @@ -7,7 +7,7 @@ var Result = require('./browser_result') // The browser is ready to execute tests. var READY = 1 -// The browser is executing the tests/ +// The browser is executing the tests. var EXECUTING = 2 // The browser is not executing, but temporarily disconnected (waiting for reconnecting). diff --git a/lib/launchers/process.js b/lib/launchers/process.js index 4ce99e3ed..ca3171c34 100644 --- a/lib/launchers/process.js +++ b/lib/launchers/process.js @@ -122,7 +122,7 @@ var ProcessLauncher = function (spawn, tempDir, timer) { // NOTE: https://github.com/karma-runner/karma/pull/1184 // NOTE: SIGKILL is just a signal. Processes should never ignore it, but they can. - // If a process gets into a state where it doesn't respond in a reasonable amout of time + // If a process gets into a state where it doesn't respond in a reasonable amount of time // Karma should warn, and continue as though the kill succeeded. // This a certainly suboptimal, but it is better than having the test harness hang waiting // for a zombie child process to exit. diff --git a/lib/logger.js b/lib/logger.js index 09872d87e..455081dbe 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -11,7 +11,7 @@ var constant = require('./constants') // #### Public Functions // Setup the logger by passing in the configuration options. It needs -// three argumentes: +// three arguments: // // setup(logLevel, colors, appenders) // diff --git a/lib/middleware/strip_host.js b/lib/middleware/strip_host.js index 6851b779a..b8b886402 100644 --- a/lib/middleware/strip_host.js +++ b/lib/middleware/strip_host.js @@ -1,6 +1,6 @@ /** * Strip host middleware is responsible for stripping hostname from request path - * This to handle requests that uses (normally over proxies) an absolutURI as request path + * This to handle requests that uses (normally over proxies) an absoluteURI as request path */ var createStripHostMiddleware = function () {