hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 47737790a2337c177ed5c56f65acd19dc84d3bbe
parent 71fe2b232ae8773e755c36a60fc0e386c0acb390
Author: Alexey Yerin <yyp@disroot.org>
Date:   Sat, 28 Oct 2023 18:03:34 +0300

time::chrono: imrove timescale load fail abort msg

Signed-off-by: Alexey Yerin <yyp@disroot.org>

Diffstat:
Mtime/chrono/timescale.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/time/chrono/timescale.ha b/time/chrono/timescale.ha @@ -126,7 +126,7 @@ fn utc_convto(ts: *timescale, i: time::instant) ([]time::instant | void) = { case void => utc_isinitialized = true; case => - abort("utc timescale uninitialized"); + abort("Failed to initialize UTC timescale"); }; }; @@ -211,7 +211,7 @@ fn utc_convfrom(ts: *timescale, i: time::instant) ([]time::instant | void) = { case void => utc_isinitialized = true; case => - abort("utc timescale uninitialized"); + abort("Failed to initialize UTC timescale"); }; };