docs: improve Math.sign JSDoc grammar and clarity (#63433)

This commit is contained in:
Aakash
2026-04-27 22:55:25 +05:30
committed by GitHub
parent 55423abe4d
commit af087e5751

View File

@@ -94,7 +94,7 @@ interface Math {
imul(x: number, y: number): number;
/**
* Returns the sign of the x, indicating whether x is positive, negative or zero.
* Returns the sign of x, indicating whether x is positive, negative, or zero.
* @param x The numeric expression to test
*/
sign(x: number): number;