commit 1b6ddc406900566afe9a3b56a630acebaeb8e726
parent 57b44c2343a86cb2f44838c7af4bb60e8ce87886
Author: Ember Sawady <ecs@d2evs.net>
Date: Wed, 31 May 2023 01:59:11 +0000
rt/abort*.ha: add missing comma in reasons
Signed-off-by: Ember Sawady <ecs@d2evs.net>
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/rt/abort+test.ha b/rt/abort+test.ha
@@ -27,7 +27,7 @@ const reasons: [_]str = [
"out of memory", // 2
"static insert/append exceeds slice capacity", // 3
"execution reached unreachable code (compiler bug)", // 4
- "slice allocation capacity smaller than initializer" // 5
+ "slice allocation capacity smaller than initializer", // 5
"assertion failed", // 6
"error occured", // 7
];
diff --git a/rt/abort.ha b/rt/abort.ha
@@ -12,7 +12,7 @@ const reasons: [_]str = [
"out of memory", // 2
"static insert/append exceeds slice capacity", // 3
"execution reached unreachable code (compiler bug)", // 4
- "slice allocation capacity smaller than initializer" // 5
+ "slice allocation capacity smaller than initializer", // 5
"assertion failed", // 6
"error occured", // 7
];