Browse Source

Fix typo in examples/threads.rs (#7328)

pull/7330/head
Xinzhao Xu 1 year ago
committed by GitHub
parent
commit
ce796a9684
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/threads.rs

2
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();

Loading…
Cancel
Save