Fixes an off-by-one classic to also accept dates in January

This commit is contained in:
Tammo van Lessen 2020-11-28 00:43:35 +01:00 committed by GitHub
parent 6c7f0cc4f7
commit e9347176bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ object DateFind {
def readMonth: Reader[Int] =
Reader.readFirst(w =>
Some(months.indexWhere(_.contains(w.value))).filter(_ > 0).map(_ + 1)
Some(months.indexWhere(_.contains(w.value))).filter(_ >= 0).map(_ + 1)
)
def readDay: Reader[Int] =