From 741ed439097053b45c3588085bc4394e0d95c8bb Mon Sep 17 00:00:00 2001 From: Özgür Kesim Date: Thu, 28 Nov 2024 19:10:30 +0100 Subject: use 216 days to make DaysInMonth a proper integer --- zeitgeist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeitgeist.go b/zeitgeist.go index a4c05c4..12299c8 100644 --- a/zeitgeist.go +++ b/zeitgeist.go @@ -178,7 +178,7 @@ func (a Date) After(b Date) bool { type Amount float64 const ( - DaysInYear = 215 + DaysInYear = 216 DaysInMonth = DaysInYear / 12 HoursInDay = 8 ) -- cgit v1.2.3