From b1f6bc72f4d2ddc5846f1af6351bd0a17a5c2460 Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Fri, 25 Dec 2015 16:23:07 +0800 Subject: [PATCH] Fix minor doc typo in `_.chunk`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 7c6045ea0..fae6f2d47 100644 --- a/lodash.js +++ b/lodash.js @@ -5237,7 +5237,7 @@ /** * Creates an array of elements split into groups the length of `size`. - * If `collection` can't be split evenly, the final chunk will be the remaining + * If `array` can't be split evenly, the final chunk will be the remaining * elements. * * @static