From d1318f8d3a3b4f3efdd6742a5b149c19b4bb53b9 Mon Sep 17 00:00:00 2001 From: Intege-rs Date: Tue, 22 Apr 2025 03:03:11 -0400 Subject: [PATCH] how long has this been an error --- sub/core/src/time.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sub/core/src/time.rs b/sub/core/src/time.rs index c8d1960..42d1a57 100644 --- a/sub/core/src/time.rs +++ b/sub/core/src/time.rs @@ -19,8 +19,8 @@ pub mod __time_units { use super::units::*; pub const milliseconds : Milli = 1; pub const seconds : Second = 1_000; - pub const hours : Hour = 60_000; - pub const minutes : Minute = 3_600_000; + pub const minutes : Hour = 60_000; + pub const hours : Minute = 3_600_000; pub const days : Day = 86_400_000; pub const weeks : Week = 604_800_000; }