Skip to content

Commit 225d2d6

Browse files
authored
fix error wasm-mutate-stats.rs (#2221)
1 parent 150a220 commit 225d2d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/wasm-mutate-stats/src/bin/wasm-mutate-stats.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ struct State {
9797
engines: Vec<(wasmtime::Engine, OptLevel)>,
9898
// timeout_reached state
9999
timeout_reached: AtomicBool,
100-
// To avoid generation of mutations, just print report over prexisting folders
100+
// To avoid generation of mutations, just print report over preexisting folders
101101
do_not_generate: bool,
102102
// seed
103103
seed: u64,
@@ -404,7 +404,7 @@ impl State {
404404
for (entryidx, entry) in worklist.iter().enumerate() {
405405
let data = std::fs::read(entry).context("failed to read seed file")?;
406406
// Compile each configuration
407-
// Spwan compilation
407+
// Spawn compilation
408408
for (engine, optlevel) in &self.engines {
409409
let module = wasmtime::Module::new(engine, &data).with_context(|| {
410410
format!(

0 commit comments

Comments
 (0)