From 8755ad4416cfdf06a2db14bc4b744b5f14ee969b Mon Sep 17 00:00:00 2001 From: Aakash Prajapati Date: Sat, 25 Apr 2026 11:57:42 +0530 Subject: [PATCH] docs: improve Math.sign JSDoc grammar and clarity --- src/lib/es2015.core.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es2015.core.d.ts b/src/lib/es2015.core.d.ts index 93b103bd8b83e..8f8162b0da0b2 100644 --- a/src/lib/es2015.core.d.ts +++ b/src/lib/es2015.core.d.ts @@ -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;