hare

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

commit ff7b6c1a8eee0760b4dbbe94b5d04ca85d49f943
parent da9256b23121082b760cfb1ddfe80add45747203
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu,  1 Jun 2023 00:57:11 -0400

rt: fix typo

Diffstat:
Mrt/abort+test.ha | 2+-
Mrt/abort.ha | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/rt/abort+test.ha b/rt/abort+test.ha @@ -29,7 +29,7 @@ const reasons: [_]str = [ "execution reached unreachable code (compiler bug)", // 4 "slice allocation capacity smaller than initializer", // 5 "assertion failed", // 6 - "error occured", // 7 + "error occurred", // 7 "return from @noreturn function", // 8 ]; diff --git a/rt/abort.ha b/rt/abort.ha @@ -14,7 +14,7 @@ const reasons: [_]str = [ "execution reached unreachable code (compiler bug)", // 4 "slice allocation capacity smaller than initializer", // 5 "assertion failed", // 6 - "error occured", // 7 + "error occurred", // 7 "return from @noreturn function", // 8 ];