From e095e0523e587d3e4e82f8bacc9a30bc7da7013f Mon Sep 17 00:00:00 2001 From: Donghoon759 Date: Tue, 11 Aug 2020 23:08:24 +0900 Subject: [PATCH 1/3] Fix typo --- jsdoc.conf.json => jsdoc.json | 0 lib/nodejs/serializer.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename jsdoc.conf.json => jsdoc.json (100%) diff --git a/jsdoc.conf.json b/jsdoc.json similarity index 100% rename from jsdoc.conf.json rename to jsdoc.json diff --git a/lib/nodejs/serializer.js b/lib/nodejs/serializer.js index ac95bdc344..448cb52e45 100644 --- a/lib/nodejs/serializer.js +++ b/lib/nodejs/serializer.js @@ -56,7 +56,7 @@ class SerializableWorkerResult { /** * Instantiates a new {@link SerializableWorkerResult}. * @param {...any} args - Args to constructor - * @returns {SerilizableWorkerResult} + * @returns {SerializableWorkerResult} */ static create(...args) { return new SerializableWorkerResult(...args); From 52a3d6bbfe6363fb38f2402c6f27f2d7f4827f4a Mon Sep 17 00:00:00 2001 From: Donghoon Song Date: Tue, 11 Aug 2020 23:39:43 +0900 Subject: [PATCH 2/3] Fix typos --- lib/mocha.js | 4 ++-- lib/runner.js | 2 +- lib/utils.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/mocha.js b/lib/mocha.js index dc18b585a5..0b4aa5a4bd 100644 --- a/lib/mocha.js +++ b/lib/mocha.js @@ -807,7 +807,7 @@ Mocha.prototype.slow = function(msecs) { * * @public * @see [CLI option](../#-async-only-a) - * @param {boolean} [asyncOnly=true] - Wether to force `done` callback or promise. + * @param {boolean} [asyncOnly=true] - Whether to force `done` callback or promise. * @return {Mocha} this * @chainable */ @@ -847,7 +847,7 @@ Mocha.prototype.allowUncaught = function(allowUncaught) { * Delays root suite execution. * * @description - * Used to perform asynch operations before any suites are run. + * Used to perform async operations before any suites are run. * * @public * @see [delayed root suite](../#delayed-root-suite) diff --git a/lib/runner.js b/lib/runner.js index cd91173e10..876d64fb24 100644 --- a/lib/runner.js +++ b/lib/runner.js @@ -206,7 +206,7 @@ Runner.prototype._addEventListener = function(target, eventName, listener) { /** * Replacement for `target.removeListener(eventName, listener)` that also updates the bookkeeping. * @param {EventEmitter} target - The `EventEmitter` - * @param {string} eventName - The event anme + * @param {string} eventName - The event name * @param {function} listener - Listener function * @private */ diff --git a/lib/utils.js b/lib/utils.js index 00d6fcc938..cf483760cf 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -508,7 +508,7 @@ exports.isPromise = function isPromise(value) { * Clamps a numeric value to an inclusive range. * * @param {number} value - Value to be clamped. - * @param {numer[]} range - Two element array specifying [min, max] range. + * @param {number[]} range - Two element array specifying [min, max] range. * @returns {number} clamped value */ exports.clamp = function clamp(value, range) { From 327e06e911de698cc9af061dc3768d0e084e5eb7 Mon Sep 17 00:00:00 2001 From: Donghoon Song Date: Thu, 13 Aug 2020 17:49:08 +0900 Subject: [PATCH 3/3] Fix netlify deploy preview issue --- jsdoc.json => jsdoc.conf.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename jsdoc.json => jsdoc.conf.json (100%) diff --git a/jsdoc.json b/jsdoc.conf.json similarity index 100% rename from jsdoc.json rename to jsdoc.conf.json