Fix typo 'destory' and compile issue (#119)
* Optimize samples build process * Samples: build 64 bit version by default * Fix typo 'destory' * Fix compile issue
This commit is contained in:
@ -209,7 +209,7 @@ wasm_runtime_create_exec_env(uint32_t stack_size);
|
||||
* @param env the execution environment to destroy
|
||||
*/
|
||||
void
|
||||
wasm_runtime_destory_exec_env(wasm_exec_env_t env);
|
||||
wasm_runtime_destroy_exec_env(wasm_exec_env_t env);
|
||||
|
||||
/**
|
||||
* Call the given WASM function of a WASM module instance with
|
||||
|
||||
@ -99,7 +99,7 @@ wasm_hash_map_find(HashMap *map, void *key);
|
||||
* @p_old_value if not NULL, copies the old value to it
|
||||
*
|
||||
* @return true if success, false otherwise
|
||||
* Note: the old value won't be destroyed by value destory function,
|
||||
* Note: the old value won't be destroyed by value destroy function,
|
||||
* it will be copied to p_old_value for user to process.
|
||||
*/
|
||||
bool
|
||||
|
||||
Reference in New Issue
Block a user