summaryrefslogtreecommitdiff
path: root/zeitgeist.go
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@kesim.org>2024-11-28 19:10:30 +0100
committerÖzgür Kesim <oec@kesim.org>2024-11-28 19:10:30 +0100
commit741ed439097053b45c3588085bc4394e0d95c8bb (patch)
treefbe97a36bbacc6dd5fd0ba3b6406128a12f42140 /zeitgeist.go
parent25137520cf3d3513a828ef8c26dff830cf324d5b (diff)
use 216 days to make DaysInMonth a proper integer
Diffstat (limited to 'zeitgeist.go')
-rw-r--r--zeitgeist.go2
1 files changed, 1 insertions, 1 deletions
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
)