modify method name

This commit is contained in:
MaysWind
2025-03-23 14:54:55 +08:00
parent 1d23558dff
commit fc2c5a8e6c
11 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -275,7 +275,7 @@ export class KnownDateTimeFormat {
return result.length > 0 ? result : undefined;
}
public static detectMany(dateTimes: string[]): KnownDateTimeFormat[] | undefined {
public static detectMulti(dateTimes: string[]): KnownDateTimeFormat[] | undefined {
const detectedCounts: Record<string, number> = {};
for (const dateTime of dateTimes) {
+1 -1
View File
@@ -57,7 +57,7 @@ export class KnownDateTimezoneFormat implements NameValue {
return result.length > 0 ? result : undefined;
}
public static detectMany(dateTimes: string[]): KnownDateTimezoneFormat[] | undefined {
public static detectMulti(dateTimes: string[]): KnownDateTimezoneFormat[] | undefined {
const detectedCounts: Record<string, number> = {};
for (const dateTime of dateTimes) {