Add missing "ed".

This commit is contained in:
Ammon Smith 2022-02-15 18:22:56 -05:00
parent 83372e7dea
commit 7bd50b5068
1 changed files with 1 additions and 1 deletions

View File

@ -1608,7 +1608,7 @@ bool isValentines() {
const time_t now = time(NULL);
const struct tm *datetime = localtime(&now);
// 0-indexed tm_mon, 1-index tm_mday
// 0-indexed tm_mon, 1-indexed tm_mday
// So this is February (2nd month), and the 14th day.
return datetime->tm_mon == 1 && datetime->tm_mday == 14;
}