From bc9f10115d5614c51e652d738285cb36278e7e92 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 14 Jan 2021 14:37:44 -0800 Subject: [PATCH] Fix a typo --- crates/wasmtime/src/instance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmtime/src/instance.rs b/crates/wasmtime/src/instance.rs index 34f87e5c0a..e574f38812 100644 --- a/crates/wasmtime/src/instance.rs +++ b/crates/wasmtime/src/instance.rs @@ -308,7 +308,7 @@ impl Instance { bail!("cross-`Engine` instantiation is not currently supported"); } - // Perform some pre-flight checks before we geet into the meat of + // Perform some pre-flight checks before we get into the meat of // instantiation. let expected = module.compiled_module().module().imports().count(); if expected != imports.len() {