mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 02:33:53 -06:00
fix docs for Math.ceil and Math.floor (#16900)
This commit is contained in:
parent
3a3bb8e3f0
commit
d383f18d72
4
src/lib/es5.d.ts
vendored
4
src/lib/es5.d.ts
vendored
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user