From 4108deca02c519d981e0bfb646dcae340b3f9148 Mon Sep 17 00:00:00 2001 From: Gregg Van Hove Date: Mon, 11 Mar 2019 17:39:03 -0700 Subject: [PATCH] Build distribution for various typo PRs --- lib/jasmine-core/jasmine.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 60d29de7..686b1075 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -160,7 +160,7 @@ getJasmineRequireObj().base = function(j$, jasmineGlobal) { */ j$.MAX_PRETTY_PRINT_ARRAY_LENGTH = 50; /** - * Maximum number of charasters to display when pretty printing objects. + * Maximum number of characters to display when pretty printing objects. * Characters past this number will be ellipised. * @name jasmine.MAX_PRETTY_PRINT_CHARS */ @@ -753,7 +753,7 @@ getJasmineRequireObj().Order = function() { } // Bob Jenkins One-at-a-Time Hash algorithm is a non-cryptographic hash function - // used to get a different output when the key changes slighly. + // used to get a different output when the key changes slightly. // We use your return to sort the children randomly in a consistent way when // used in conjunction with a seed @@ -1348,7 +1348,7 @@ getJasmineRequireObj().Env = function(j$) { /** * Information passed to the {@link Reporter#jasmineDone} event. * @typedef JasmineDoneInfo - * @property {OverallStatus} overallStatus - The overall result of the sute: 'passed', 'failed', or 'incomplete'. + * @property {OverallStatus} overallStatus - The overall result of the suite: 'passed', 'failed', or 'incomplete'. * @property {IncompleteReason} incompleteReason - Explanation of why the suite was incomplete. * @property {Order} order - Information about the ordering (random or not) of this execution of the suite. * @property {Expectation[]} failedExpectations - List of expectations that failed in an {@link afterAll} at the global level. @@ -2401,7 +2401,7 @@ getJasmineRequireObj().Clock = function() { * The clock will be {@link Clock#install|install}ed before the function is called and {@link Clock#uninstall|uninstall}ed in a `finally` after the function completes. * @name Clock#withMock * @function - * @param {closure} Function The function to be called. + * @param {Function} closure The function to be called. */ self.withMock = function(closure) { this.install(); @@ -6083,7 +6083,7 @@ getJasmineRequireObj().Spy = function (j$) { if (!strategy) { if (argsStrategies.any() && !baseStrategy.isConfigured()) { - throw new Error('Spy \'' + strategyArgs.name + '\' receieved a call with arguments ' + j$.pp(Array.prototype.slice.call(args)) + ' but all configured strategies specify other arguments.'); + throw new Error('Spy \'' + strategyArgs.name + '\' received a call with arguments ' + j$.pp(Array.prototype.slice.call(args)) + ' but all configured strategies specify other arguments.'); } else { strategy = baseStrategy; }