File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ string GetToday() {
6161 int cnt{};
6262 while (std::getline (iss, temp, ' -' )) {
6363 today += temp;
64- if (cnt == 0 ) { today += " 년" ; ++cnt; }
65- else if (cnt == 1 ) { today += " 월" ; ++cnt; }
64+ if (cnt == 0 ) { today += " 년 " ; ++cnt; }
65+ else if (cnt == 1 ) { today += " 월 " ; ++cnt; }
6666 else if (cnt == 2 ) { today += " 일" ; ++cnt; }
6767 }
6868 // cout << today << '\n';
@@ -122,8 +122,8 @@ int main() {
122122 vector<string> resultName;
123123 for (auto i : result[index] | std::views::transform (func)) resultName.emplace_back (i);
124124
125-
126- cout << " 오늘 날짜 : \t\t " << today << " \n\n 이번주 PRTable은 \t " ;
125+
126+ cout << " 오늘 날짜 : \t\t " << today << " \n\n 이번주 PR Table은 \t " ;
127127 Print (resultName);
128128
129129 /*
You can’t perform that action at this time.
0 commit comments