From 765eb7bf0be6ab070fb39e16112520699d53e7e3 Mon Sep 17 00:00:00 2001 From: Aman Sachan Date: Mon, 27 Apr 2026 08:46:28 +0000 Subject: [PATCH] fix: remove grammatically incorrect 'the' before x in Math.sign JSDoc --- 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..e9d3814b05dc8 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;