Merge pull request #20517 from gagoman/16900
fix docs for Math.ceil and Math.floor (#16900)
This commit is contained in:
Коммит
53657069bc
|
@ -550,7 +550,7 @@ interface Math {
|
|||
*/
|
||||
atan2(y: number, x: number): number;
|
||||
/**
|
||||
* Returns the smallest number greater than or equal to its numeric argument.
|
||||
* Returns the smallest integer greater than or equal to its numeric argument.
|
||||
* @param x A numeric expression.
|
||||
*/
|
||||
ceil(x: number): number;
|
||||
|
@ -565,7 +565,7 @@ interface Math {
|
|||
*/
|
||||
exp(x: number): number;
|
||||
/**
|
||||
* Returns the greatest number less than or equal to its numeric argument.
|
||||
* Returns the greatest integer less than or equal to its numeric argument.
|
||||
* @param x A numeric expression.
|
||||
*/
|
||||
floor(x: number): number;
|
||||
|
|
Загрузка…
Ссылка в новой задаче