From 02ff3e625861154c90b6eb3842c631045207b3d0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 23 May 2016 11:03:10 -0700 Subject: [PATCH] Remove "unique" mention from `_.difference` docs. [ci skip] [closes #2372] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 08214c546..d1adb7574 100644 --- a/lodash.js +++ b/lodash.js @@ -6202,8 +6202,8 @@ } /** - * Creates an array of unique `array` values not included in the other given - * arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons. The order of result values is determined by the * order they occur in the first array. *