Minor typo fix

This commit is contained in:
Luke Parker
2024-05-25 20:31:32 -04:00
parent 51f7e047a3
commit 6beb615321

View File

@@ -23,7 +23,7 @@ fn wasm_binary() -> Vec<u8> {
log::info!("using {WASM_PATH}"); log::info!("using {WASM_PATH}");
return binary; return binary;
} }
log::info!("using built-in {WASM_PATH}"); log::info!("using built-in wasm");
WASM_BINARY.ok_or("compiled in wasm not available").unwrap().to_vec() WASM_BINARY.ok_or("compiled in wasm not available").unwrap().to_vec()
} }