Fix code style error and doc nit. [ci skip]

This commit is contained in:
Jeroen Engels
2016-02-10 01:22:39 +01:00
committed by John-David Dalton
parent 046470a8db
commit 08c7bf3c85
2 changed files with 2 additions and 2 deletions

View File

@@ -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) {