From af087e57513096fcaf93efca1e535cf45cc245e2 Mon Sep 17 00:00:00 2001 From: Aakash <153816319+SkyCoderAakash@users.noreply.github.com> Date: Mon, 27 Apr 2026 22:55:25 +0530 Subject: [PATCH] docs: improve Math.sign JSDoc grammar and clarity (#63433) --- 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 93b103bd8b8..8f8162b0da0 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;