From 954b4d8075ea76b7bfd854e0be0df973236c25fe Mon Sep 17 00:00:00 2001 From: jdalton Date: Mon, 9 Feb 2015 00:32:07 -0800 Subject: [PATCH] Add mutation note to `_.fill` docs. [ci skip] --- lodash.src.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lodash.src.js b/lodash.src.js index 935fc5319..39412b1a1 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4396,6 +4396,8 @@ * Fills elements of `array` with `value` from `start` up to, but not * including, `end`. * + * **Note:** This method mutates `array`. + * * @private * @param {Array} array The array to fill. * @param {*} value The value to fill `array` with.