From 085f4c259ce4bac317075ab7eb4102237ef37e22 Mon Sep 17 00:00:00 2001 From: Mike Bender Date: Wed, 27 Nov 2024 09:38:17 -0500 Subject: [PATCH] Update packages/chart/src/ChartUtils.ts Co-authored-by: Vlad Babich --- packages/chart/src/ChartUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/chart/src/ChartUtils.ts b/packages/chart/src/ChartUtils.ts index 23d2461f1..f2457656a 100644 --- a/packages/chart/src/ChartUtils.ts +++ b/packages/chart/src/ChartUtils.ts @@ -580,9 +580,9 @@ class ChartUtils { * * @param holidayPeriods the business periods for the holiday * @param calendarPeriods the business periods for the calendar - * @returns an array of closed periods for the partial holiday. Should be the periods during the regular business hours that are _not_ specified by the holiday periods. + * @returns an array of closed ranges for the partial holiday. Should be the ranges during the regular business hours that are _not_ specified by the holiday periods. */ - static createClosedPeriodsForPartialHoliday( + static createClosedRangesForPartialHoliday( holidayPeriods: DhType.calendar.BusinessPeriod[], calendarPeriods: DhType.calendar.BusinessPeriod[] ): Range[] {