doc(runtime-core) Fix a typo.

This commit is contained in:
Ivan Enderlin
2020-01-15 08:41:37 +01:00
parent 4cdf868a0b
commit bcbde69694

View File

@ -219,7 +219,7 @@ pub trait RunnableModule: Send + Sync {
}
/// A wasm trampoline contains the necessary data to dynamically call an exported wasm function.
/// Given a particular signature index, we are returning a trampoline that is matched with that
/// Given a particular signature index, we return 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<Wasm>;