From 7de0087c75db1bc9d619ba86c4ace27a6a5bfbb6 Mon Sep 17 00:00:00 2001
From: o-m12a
Date: Wed, 21 Jan 2026 01:24:52 +0900
Subject: [PATCH] =?UTF-8?q?Fix=20a=20typo=20in=20the=20JSDoc=20of=20`Math.?=
=?UTF-8?q?trunc(=E2=80=A6)`?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
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 d3b487d7a52c1..93b103bd8b83e 100644
--- a/src/lib/es2015.core.d.ts
+++ b/src/lib/es2015.core.d.ts
@@ -173,7 +173,7 @@ interface Math {
hypot(...values: number[]): number;
/**
- * Returns the integral part of the a numeric expression, x, removing any fractional digits.
+ * Returns the integral part of the numeric expression x, removing any fractional digits.
* If x is already an integer, the result is x.
* @param x A numeric expression.
*/