From 03549c5ffa35cebbdbb5b0f6f9dae3052a8fefc0 Mon Sep 17 00:00:00 2001 From: Victor Turansky Date: Sun, 17 May 2026 20:49:35 +0200 Subject: [PATCH] Fix `es2020.intl.d.ts` formatting --- src/lib/es2020.intl.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/es2020.intl.d.ts b/src/lib/es2020.intl.d.ts index 5ab347994647e..727dc64644612 100644 --- a/src/lib/es2020.intl.d.ts +++ b/src/lib/es2020.intl.d.ts @@ -153,15 +153,15 @@ declare namespace Intl { format(value: number, unit: RelativeTimeFormatUnit): string; /** - * Returns an array of objects representing the relative time format in parts that can be used for custom locale-aware formatting. + * Returns an array of objects representing the relative time format in parts that can be used for custom locale-aware formatting. * - * @param value - Numeric value to use in the internationalized relative time message + * @param value - Numeric value to use in the internationalized relative time message * - * @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message. + * @param unit - [Unit](https://tc39.es/ecma402/#sec-singularrelativetimeunit) to use in the relative time internationalized message. * - * @throws `RangeError` if `unit` was given something other than `unit` possible values + * @throws `RangeError` if `unit` was given something other than `unit` possible values * - * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts). + * [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts). */ formatToParts(value: number, unit: RelativeTimeFormatUnit): RelativeTimeFormatPart[];