From 0353c98da119ffec01eb4700e806c3e568d79faf Mon Sep 17 00:00:00 2001 From: Bruno Date: Sat, 7 Dec 2024 20:07:39 +0000 Subject: [PATCH] Fix typo. --- runtimes/native/src/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimes/native/src/runtime.c b/runtimes/native/src/runtime.c index e710f9e6..532c6870 100644 --- a/runtimes/native/src/runtime.c +++ b/runtimes/native/src/runtime.c @@ -50,7 +50,7 @@ static void panic(const char *msg) static void out_of_bounds_access(void) { - panic("out of bands memory access"); + panic("out of bounds memory access"); } static uint32_t mul_u32_with_overflow_check(uint32_t a, uint32_t b)