diff --git a/feiertagebot.cpp b/feiertagebot.cpp index ce9eaf3..15639c0 100644 --- a/feiertagebot.cpp +++ b/feiertagebot.cpp @@ -28,7 +28,7 @@ using std::chrono::system_clock; using std::chrono::hours; using std::uint_fast16_t; -const string version = "2019-02-12_3"; +const string version = "2019-02-12_4"; struct Holiday { @@ -178,7 +178,7 @@ int main() { continue; } - output += "Am " + current_day.date + " ist " + current_day.description + " in "; + output += "Am " + current_day.date + " ist " + current_day.description + ", ein gesetzlicher Feiertag in "; if (std::find(current_day.regions.begin(), current_day.regions.end(), "NATIONAL") != current_day.regions.end()) { output += "Deutschland.\n";