From e8dfd55878dc8f28b64d07fa93a3485475c00784 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Fri, 23 Jan 2026 21:53:33 +0100 Subject: Tweaks for 1.0 release with aliases --- time.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'time.odin') diff --git a/time.odin b/time.odin index dbe79a2..2535dff 100644 --- a/time.odin +++ b/time.odin @@ -701,7 +701,7 @@ momentToString :: proc(moment: Moment) -> (output: string) { timeblockToString :: proc(block: Timeblock) -> (output: string) { using block s: [5]string = {} - output = fmt.aprintf("%s -> %s | %0.3f hrs | %s", toString(start), toString(end), hourcount(block), title) + output = fmt.aprintf("%s -> %02d:%02d | %0.3f hrs | %s", toString(start), end.hours, end.minutes, hourcount(block), title) return } toString :: proc{deltaToString, momentToString, timeblockToString} -- cgit v1.2.1