diff options
Diffstat (limited to 'lib/pure/times.nim')
-rw-r--r-- | lib/pure/times.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/times.nim b/lib/pure/times.nim index e39756696..29ae52d47 100644 --- a/lib/pure/times.nim +++ b/lib/pure/times.nim @@ -1245,7 +1245,7 @@ proc getDayOfWeek*(day, month, year: int): WeekDay = result = (d-1).WeekDay proc getDayOfWeekJulian*(day, month, year: int): WeekDay = - ## Returns the day of the week enum from day, month and year, according to the Julian calender. + ## Returns the day of the week enum from day, month and year, according to the Julian calendar. # Day & month start from one. let a = (14 - month) div 12 |