Remove "unique" mention from _.difference docs. [ci skip] [closes #2372]

This commit is contained in:
John-David Dalton
2016-05-23 11:03:10 -07:00
parent 65ce1b0bb5
commit 02ff3e6258

View File

@@ -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.
*