summaryrefslogtreecommitdiff
path: root/crates/parser/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'crates/parser/README.md')
-rw-r--r--crates/parser/README.md5
1 files changed, 2 insertions, 3 deletions
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();
```