File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -547,19 +547,19 @@ interface Number {
547547
548548 /**
549549 * Returns a string representing a number in fixed-point notation.
550- * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20 , inclusive.
550+ * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 100 , inclusive.
551551 */
552552 toFixed ( fractionDigits ?: number ) : string ;
553553
554554 /**
555555 * Returns a string containing a number represented in exponential notation.
556- * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 20 , inclusive.
556+ * @param fractionDigits Number of digits after the decimal point. Must be in the range 0 - 100 , inclusive.
557557 */
558558 toExponential ( fractionDigits ?: number ) : string ;
559559
560560 /**
561561 * Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits.
562- * @param precision Number of significant digits. Must be in the range 1 - 21 , inclusive.
562+ * @param precision Number of significant digits. Must be in the range 1 - 100 , inclusive.
563563 */
564564 toPrecision ( precision ?: number ) : string ;
565565
You can’t perform that action at this time.
0 commit comments