From 87057095bc2eacca7199c9f04b01906fb3a58fa1 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 22 Oct 2015 17:31:00 -0700 Subject: [PATCH] Cleanup `_.isSafeInteger` description. [ci skip] --- lodash.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 289b8af5a..2cf57b3c9 100644 --- a/lodash.js +++ b/lodash.js @@ -9546,8 +9546,7 @@ /** * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 - * double precision number which isn't the result of rounding result of unsafe - * integers. + * double precision number which isn't the result of a rounded unsafe integer. * * **Note:** This method is based on [`Number.isSafeInteger`](http://ecma-international.org/ecma-262/6.0/#sec-number.issafeinteger). *