From 29bc8d965b27d5ed96d53be15cb8b82fdb948ad2 Mon Sep 17 00:00:00 2001 From: laispace Date: Tue, 2 Feb 2016 15:39:36 +0800 Subject: [PATCH] Fix `_.sortedUniqBy` doc example. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c44b0b0e1..d16d7bff2 100644 --- a/lodash.js +++ b/lodash.js @@ -6465,7 +6465,7 @@ * @example * * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); - * // => [1.1, 2.2] + * // => [1.1, 2.3] */ function sortedUniqBy(array, iteratee) { return (array && array.length)