diff --git a/engine/time/src/main/java/io/deephaven/time/calendar/Calendars.java b/engine/time/src/main/java/io/deephaven/time/calendar/Calendars.java index 548b08acb49..c0743d01a35 100644 --- a/engine/time/src/main/java/io/deephaven/time/calendar/Calendars.java +++ b/engine/time/src/main/java/io/deephaven/time/calendar/Calendars.java @@ -30,11 +30,13 @@ public class Calendars { private static final Map calMap = new TreeMap<>(); /** - * Loads the line-separated calendar resources from the resource file configuration value + * Loads the line-separated calendar XML resources from the resource file configuration value * {@value BUSINESS_CALENDAR_PROP_INTERNAL}. If the resource file configuration value - * {@value BUSINESS_CALENDAR_PROP_USER} exists, those line-separated calendar resources will be returned as well. + * {@value BUSINESS_CALENDAR_PROP_USER} exists, those line-separated calendar XML resources will be returned as + * well. * * @return the calendars + * @see BusinessCalendarXMLParser#loadBusinessCalendarFromResource(String) */ public static List calendarsFromConfiguration() { final Configuration configuration = Configuration.getInstance(); diff --git a/engine/time/src/main/java/io/deephaven/time/calendar/CalendarsFromConfigurationModule.java b/engine/time/src/main/java/io/deephaven/time/calendar/CalendarsFromConfigurationModule.java index 48cc2a2fc60..213965056db 100644 --- a/engine/time/src/main/java/io/deephaven/time/calendar/CalendarsFromConfigurationModule.java +++ b/engine/time/src/main/java/io/deephaven/time/calendar/CalendarsFromConfigurationModule.java @@ -11,7 +11,7 @@ import java.util.Set; /** - * Provides the {@link BusinessCalendar business calendars} fromm {@link Calendars#calendarsFromConfiguration()}. + * Provides the {@link BusinessCalendar business calendars} from {@link Calendars#calendarsFromConfiguration()}. */ @Module public interface CalendarsFromConfigurationModule {