Fix typo for 'native' in wasm_export.h (#3376)

Trivial spelling fix.
This commit is contained in:
Benbuck Nason 2024-04-29 17:57:49 -07:00 committed by GitHub
parent 79ae910a7c
commit 4abf288c94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1602,7 +1602,7 @@ wasm_runtime_get_version(uint32_t *major, uint32_t *minor, uint32_t *patch);
/**
* Check whether an import func `(import <module_name> <func_name> (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 <module_name> <global_name>
* (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,