From 8481684a82e4c5b8d5117f25d8b52425f39f3a98 Mon Sep 17 00:00:00 2001 From: jdalton Date: Mon, 30 Mar 2015 21:05:48 -0700 Subject: [PATCH] Fix `start` and `end` typo mix up in `_.range` docs. [closes #1095] [ci skip] --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index 547d00ba1..db7a787b4 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -11414,7 +11414,7 @@ /** * Creates an array of numbers (positive and/or negative) progressing from * `start` up to, but not including, `end`. If `end` is not specified it is - * set to `start` with `start` then set to `0`. If `start` is less than `end` + * set to `start` with `start` then set to `0`. If `end` is less than `start` * a zero-length range is created unless a negative `step` is specified. * * @static