From 40e570cf8bdd948c1e7e9dd85e5ac24d9a062d2a Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Tue, 14 Jan 2025 17:41:29 +0100 Subject: chore: update deps, spelling Signed-off-by: Henry Gressmann --- examples/archive.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/archive.rs') diff --git a/examples/archive.rs b/examples/archive.rs index ea82c51..f1a19b6 100644 --- a/examples/archive.rs +++ b/examples/archive.rs @@ -11,12 +11,12 @@ const WASM: &str = r#" "#; fn main() -> Result<()> { - let wasm = wat::parse_str(WASM).expect("failed to parse wat"); + let wasm = wat::parse_str(WASM).expect("Failed to parse WAT"); let module = Parser::default().parse_module_bytes(wasm)?; let twasm = module.serialize_twasm(); - // now, you could e.g. write twasm to a file called `add.twasm` - // and load it later in a different program + // Now, you could e.g. write `twasm` to a file called `add.twasm` + // and load it later in a different program. let module: Module = TinyWasmModule::from_twasm(&twasm)?.into(); let mut store = Store::default(); -- cgit v1.3.1