From b5b61257309d0152f9b820092d65d43d404168b0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 12 May 2016 13:54:56 -0700 Subject: [PATCH] Minor space nit. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 9eede4734..9de4e5757 100644 --- a/lodash.js +++ b/lodash.js @@ -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 }]