Fix a typo in the JSDoc of Math.trunc(…) (#63020)

This commit is contained in:
o-m12a
2026-01-21 09:17:15 +09:00
committed by GitHub
parent 7f6a84673d
commit ff5dbcf272

View File

@@ -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.
*/