diff --git a/lib/runtime-core/src/backend.rs b/lib/runtime-core/src/backend.rs index 1d493c314..c03b4a2a2 100644 --- a/lib/runtime-core/src/backend.rs +++ b/lib/runtime-core/src/backend.rs @@ -84,7 +84,7 @@ pub trait RunnableModule: Send + Sync { local_func_index: LocalFuncIndex, ) -> Option>; - /// A wasm trampoline contains the necesarry data to dynamically call an exported wasm function. + /// A wasm trampoline contains the necessary data to dynamically call an exported wasm function. /// Given a particular signature index, we are returned a trampoline that is matched with that /// signature and an invoke function that can call the trampoline. fn get_trampoline(&self, info: &ModuleInfo, sig_index: SigIndex) -> Option;