Minor space nit. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-12 13:54:56 -07:00
parent e45984f6b8
commit b5b6125730

View File

@@ -7659,7 +7659,7 @@
* @returns {Array} Returns the new duplicate free array.
* @example
*
* var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];
* var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];
*
* _.uniqWith(objects, _.isEqual);
* // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]