From 9779f922b97a727aeae6046abbb323ef7f334824 Mon Sep 17 00:00:00 2001 From: Daniel Mangum <31777345+hasheddan@users.noreply.github.com> Date: Tue, 19 Dec 2023 19:08:13 -0600 Subject: [PATCH] Fix boundary check typo in AOT compiler context (#2913) Fixes typo in docstrings for boundary check in the AOT compiler context. Signed-off-by: Daniel Mangum --- core/iwasm/compilation/aot_llvm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/iwasm/compilation/aot_llvm.h b/core/iwasm/compilation/aot_llvm.h index 32d7bbeb..471b07dd 100644 --- a/core/iwasm/compilation/aot_llvm.h +++ b/core/iwasm/compilation/aot_llvm.h @@ -321,10 +321,10 @@ typedef struct AOTCompContext { /* Bulk memory feature */ bool enable_bulk_memory; - /* Bounday Check */ + /* Boundary Check */ bool enable_bound_check; - /* Native stack bounday Check */ + /* Native stack boundary Check */ bool enable_stack_bound_check; /* Native stack usage estimation */