From c2061cf63b0c131632c07191af2f9f76d13e8a3e Mon Sep 17 00:00:00 2001 From: Henry Date: Sun, 12 Apr 2026 22:39:22 +0200 Subject: chore: cleanup Signed-off-by: Henry --- crates/parser/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crates/parser/README.md') diff --git a/crates/parser/README.md b/crates/parser/README.md index 104cd50..c7eef8d 100644 --- a/crates/parser/README.md +++ b/crates/parser/README.md @@ -1,7 +1,6 @@ # `tinywasm-parser` -This crate provides a parser that can parse WebAssembly modules into a TinyWasm module. -It uses [my fork](https://crates.io/crates/tinywasm-wasmparser) of the [`wasmparser`](https://crates.io/crates/wasmparser) crate that has been modified to be compatible with `no_std` environments. +This crate provides a compiler that can convert WebAssembly modules into a `tinywasm` modules. ## Features @@ -16,6 +15,6 @@ let bytes = include_bytes!("./file.wasm"); let parser = Parser::new(); let module = parser.parse_module_bytes(bytes).unwrap(); -let mudule = parser.parse_module_file("path/to/file.wasm").unwrap(); +let module = parser.parse_module_file("path/to/file.wasm").unwrap(); let module = parser.parse_module_stream(&mut stream).unwrap(); ``` -- cgit v1.3.1