From 9ce3176b595ec6b44eb3e1804d1df98d21738577 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Mon, 6 Oct 2014 15:36:21 +0200 Subject: [PATCH] Rename `stop` to `end` in `_.range` docs. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 9278de9a2..09cdc59f1 100644 --- a/lodash.js +++ b/lodash.js @@ -9494,7 +9494,7 @@ /** * Creates an array of numbers (positive and/or negative) progressing from - * `start` up to but not including `end`. If `start` is less than `stop` a + * `start` up to but not including `end`. If `start` is less than `end` a * zero-length range is created unless a negative `step` is specified. * * @static