Skip to content

Commit f796c15

Browse files
committed
update error messages
1 parent acd22f7 commit f796c15

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/EnergyPlus/ScheduleManager.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ namespace Sched {
641641
if (!csvParser.hasErrors()) {
642642
isCSV = true;
643643
ShowWarningMessage(state,
644-
fmt::format("Extension of file {} is unrecogonized, but parsed as CSV successfully",
644+
fmt::format("Extension of file {} is unrecognized, but parsed as CSV successfully",
645645
state.files.TempFullFilePath.filePath));
646646
schedule_file_shading_result = it.first;
647647
}
@@ -656,7 +656,7 @@ namespace Sched {
656656
s_sched->UniqueProcessedExternalFiles.emplace(state.files.TempFullFilePath.filePath, std::move(schedule_data));
657657
schedule_file_shading_result = it.first;
658658
ShowWarningMessage(state,
659-
fmt::format("Extension of file {} is unrecogonized, but parsed as JSON successfully",
659+
fmt::format("Extension of file {} is unrecognized, but parsed as JSON successfully",
660660
state.files.TempFullFilePath.filePath));
661661
isJSON = true;
662662
} catch (...) {
@@ -1717,7 +1717,7 @@ namespace Sched {
17171717
result = it.first;
17181718
isCSV = true;
17191719
ShowWarningMessage(state,
1720-
fmt::format("Extension of file {} is unrecogonized, but parsed as CSV successfully",
1720+
fmt::format("Extension of file {} is unrecognized, but parsed as CSV successfully",
17211721
state.files.TempFullFilePath.filePath));
17221722
}
17231723
} catch (...) {
@@ -1731,7 +1731,7 @@ namespace Sched {
17311731
FileSystem::readJSON(state.files.TempFullFilePath.filePath));
17321732
result = it.first;
17331733
ShowWarningMessage(state,
1734-
fmt::format("Extension of file {} is unrecogonized, but parsed as JSON successfully",
1734+
fmt::format("Extension of file {} is unrecognized, but parsed as JSON successfully",
17351735
state.files.TempFullFilePath.filePath));
17361736
isJSON = true;
17371737
} catch (...) {

0 commit comments

Comments
 (0)