Fix number of days in a (standard) year

https://forums.ankiweb.net/t/prop-ivl-faulty/20665
This commit is contained in:
Damien Elmes 2022-06-13 09:09:27 +10:00
parent fbb0d90935
commit 4d51ee8a64

View File

@ -58,7 +58,7 @@ const MINUTE: f32 = 60.0 * SECOND;
const HOUR: f32 = 60.0 * MINUTE;
const DAY: f32 = 24.0 * HOUR;
const MONTH: f32 = 30.0 * DAY;
const YEAR: f32 = 12.0 * MONTH;
const YEAR: f32 = 365.0 * DAY;
#[derive(Clone, Copy)]
pub(crate) enum TimespanUnit {