From 08c7bf3c8506b05f4ea1b7370addc13c95203672 Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Wed, 10 Feb 2016 01:22:39 +0100 Subject: [PATCH] Fix code style error and doc nit. [ci skip] --- lodash.js | 2 +- test/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 369ba5450..899730efb 100644 --- a/lodash.js +++ b/lodash.js @@ -11528,7 +11528,7 @@ * @category Object * @param {Object} object The source object. * @param {...(string|string[])} [props] The property names to omit, specified - * individually or in arrays.. + * individually or in arrays. * @returns {Object} Returns the new object. * @example * diff --git a/test/test.js b/test/test.js index b32291b4a..acd7d90b7 100644 --- a/test/test.js +++ b/test/test.js @@ -5626,7 +5626,7 @@ assert.deepEqual(_.flatten(array), [[], [], [[[]]]]); assert.deepEqual(_.flattenDeep(array), []); - assert.deepEqual(_.flattenDepth(array, 2), [[[]]]) + assert.deepEqual(_.flattenDepth(array, 2), [[[]]]); }); QUnit.test('should support flattening of nested arrays', function(assert) {