Fix documentation typo, s/uiq/uniq. [closes #32] [cheeaun]

Former-commit-id: 343ff0d9a7238ab7eec6d5cc75b5c7dff3de1925
This commit is contained in:
John-David Dalton
2012-06-15 09:12:03 -04:00
parent cea122db38
commit 0c77f42080
2 changed files with 2 additions and 2 deletions

View File

@@ -2336,7 +2336,7 @@ Produces a duplicate-value-free version of the `array` using strict equality for
_.uniq([1, 2, 1, 3, 1]);
// => [1, 2, 3]
_.uiq([1, 1, 2, 2, 3], true);
_.uniq([1, 1, 2, 2, 3], true);
// => [1, 2, 3]
_.uniq([1, 2, 1.5, 3, 2.5], function(num) { return Math.floor(num); });

View File

@@ -1668,7 +1668,7 @@
* _.uniq([1, 2, 1, 3, 1]);
* // => [1, 2, 3]
*
* _.uiq([1, 1, 2, 2, 3], true);
* _.uniq([1, 1, 2, 2, 3], true);
* // => [1, 2, 3]
*
* _.uniq([1, 2, 1.5, 3, 2.5], function(num) { return Math.floor(num); });