Merge pull request #9951 from hckr/patch-1

Fix typo in comment for MAX_SAFE_INTEGER
This commit is contained in:
Ryan Cavanaugh
2016-07-30 08:46:08 -07:00
committed by GitHub
+1 -1
View File
@@ -226,7 +226,7 @@ interface NumberConstructor {
/**
* The value of the largest integer n such that n and n + 1 are both exactly representable as
* a Number value.
* The value of Number.MIN_SAFE_INTEGER is 9007199254740991 2^53 − 1.
* The value of Number.MAX_SAFE_INTEGER is 9007199254740991 2^53 − 1.
*/
readonly MAX_SAFE_INTEGER: number;