diff --git a/crates/wasmtime/src/func.rs b/crates/wasmtime/src/func.rs index 1dc3126862..47a50e2045 100644 --- a/crates/wasmtime/src/func.rs +++ b/crates/wasmtime/src/func.rs @@ -189,7 +189,7 @@ pub(crate) struct FuncData { // only needed rarely. To handle that this is an optionally-contained field // which is lazily loaded into as part of `Func::call`. // - // Also note that this is intentionally placed behind a poiner to keep it + // Also note that this is intentionally placed behind a pointer to keep it // small as `FuncData` instances are often inserted into a `Store`. ty: Option>, }