From 753a32bed76aff4182e66e0c2babc6c6907f54bc Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 12 Jan 2016 20:00:56 -0800 Subject: [PATCH] Remove legacy doc note from `_.range`. [closes #1753] [ci skip] --- lodash.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 8df2e0003..106f359bf 100644 --- a/lodash.js +++ b/lodash.js @@ -13368,8 +13368,7 @@ * Creates an array of numbers (positive and/or negative) progressing from * `start` up to, but not including, `end`. A step of `-1` is used if a negative * `start` is specified without an `end` or `step`. If `end` is not specified - * it's 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. + * it's set to `start` with `start` then set to `0`. * * **Note:** JavaScript follows the IEEE-754 standard for resolving * floating-point values which can produce unexpected results.