From ce796a968416f07e75ca7a4c55e628bcf241cd04 Mon Sep 17 00:00:00 2001 From: Xinzhao Xu Date: Mon, 23 Oct 2023 12:21:12 +0800 Subject: [PATCH] Fix typo in examples/threads.rs (#7328) --- examples/threads.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/threads.rs b/examples/threads.rs index 3c3564833e..1c75bd1671 100644 --- a/examples/threads.rs +++ b/examples/threads.rs @@ -15,7 +15,7 @@ const N_REPS: i32 = 3; fn main() -> Result<()> { println!("Initializing..."); - // Initialize global per-process state. This state will be shared amonst all + // Initialize global per-process state. This state will be shared amongst all // threads. Notably this includes the compiled module as well as a `Linker`, // which contains all our host functions we want to define. let engine = Engine::default();