From 5a5e401a9c79bb659900176e9df0401daa3a2b46 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Tue, 22 Feb 2022 22:30:32 -0800 Subject: [PATCH] doc: fix typo (#3838) --- 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 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>, }