From eb4089e21206875bc528f336d3fbb9b70cae2ed1 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 14 Sep 2021 14:09:14 -0700 Subject: [PATCH] Fix a typo --- crates/wasmtime/src/func.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmtime/src/func.rs b/crates/wasmtime/src/func.rs index 40af01f709..935d6a854f 100644 --- a/crates/wasmtime/src/func.rs +++ b/crates/wasmtime/src/func.rs @@ -1951,7 +1951,7 @@ impl HostFunc { unsafe fn register_trampoline(&self, store: &mut StoreOpaque) { // This assert is required to ensure that we can indeed safely insert // `self` into the `store` provided, otherwise the type information we - // have listed won't e correct. This is possible to hit with the public + // have listed won't be correct. This is possible to hit with the public // API of Wasmtime, and should be documented in relevant functions. assert!( Engine::same(&self.engine, store.engine()),