From a6aac88561d399f58175aa7c66105d9d94d2f566 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 22 Oct 2015 17:31:17 -0700 Subject: [PATCH] Cleanup IEEE-754 doc references. [ci skip] --- lodash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lodash.js b/lodash.js index 2cf57b3c9..e13328422 100644 --- a/lodash.js +++ b/lodash.js @@ -11007,10 +11007,10 @@ /** * Produces a random number between `min` and `max` (inclusive). If only one * argument is provided a number between `0` and the given number is returned. - * If `floating` is `true`, or either `min` or `max` are floats, a floating-point - * number is returned instead of an integer. + * If `floating` is `true`, or either `min` or `max` are floats, a + * floating-point number is returned instead of an integer. * - * **Note:** JavaScript follows the IEEE 754-2008 standard for resolving + * **Note:** JavaScript follows the IEEE-754 standard for resolving * floating-point values which can produce unexpected results. * * @static @@ -12459,7 +12459,7 @@ * 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. * - * **Note:** JavaScript follows the IEEE 754-2008 standard for resolving + * **Note:** JavaScript follows the IEEE-754 standard for resolving * floating-point values which can produce unexpected results. * * @static