From 4abf288c9431224dfef410bc972feac6dbdb2bc6 Mon Sep 17 00:00:00 2001 From: Benbuck Nason Date: Mon, 29 Apr 2024 17:57:49 -0700 Subject: [PATCH] Fix typo for 'native' in wasm_export.h (#3376) Trivial spelling fix. --- core/iwasm/include/wasm_export.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/iwasm/include/wasm_export.h b/core/iwasm/include/wasm_export.h index c7513396..13022568 100644 --- a/core/iwasm/include/wasm_export.h +++ b/core/iwasm/include/wasm_export.h @@ -1602,7 +1602,7 @@ wasm_runtime_get_version(uint32_t *major, uint32_t *minor, uint32_t *patch); /** * Check whether an import func `(import (func ...))` - * is linked or not with runtime registered natvie functions + * is linked or not with runtime registered native functions */ WASM_RUNTIME_API_EXTERN bool wasm_runtime_is_import_func_linked(const char *module_name, @@ -1610,7 +1610,7 @@ wasm_runtime_is_import_func_linked(const char *module_name, /** * Check whether an import global `(import - * (global ...))` is linked or not with runtime registered natvie globals + * (global ...))` is linked or not with runtime registered native globals */ WASM_RUNTIME_API_EXTERN bool wasm_runtime_is_import_global_linked(const char *module_name,