summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-11 19:47:57 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-11 19:47:57 -0800
commit955995a59d6ddfebd09b73d727fc0795f81a5c96 (patch)
tree67c54c0a7a845b893ec28392f66dedd704a1388b
parent05185ec99098d8b0e21a20952e1df4955e40edc2 (diff)
downloadbinaryen-955995a59d6ddfebd09b73d727fc0795f81a5c96.tar.gz
binaryen-955995a59d6ddfebd09b73d727fc0795f81a5c96.tar.bz2
binaryen-955995a59d6ddfebd09b73d727fc0795f81a5c96.zip
text
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9187ec23d..4483a1a22 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,11 @@
Binaryen is a C++ library for processing WebAssembly. It can:
- * **Represent** WebAssembly, including pretty-printing XXX
* **Interpret** WebAssembly. It passes 100% of the spec test suite.
* **Compile** asm.js to WebAssembly, which together with [Emscripten](http://emscripten.org), gives you a complete compiler toolchain from C and C++ to WebAssembly.
* **Polyfill** WebAssembly, by running it in the interpreter compiled to JavaScript, if the browser does not yet have native support.
-To provide those capabilities, Binaryen has a simple and flexible way to process, inspect and manipulate WebAssembly modules. The interpreter, validator, etc. are built on that foundation. (TODO: an example of writing a new processing pass.)
+To provide those capabilities, Binaryen has a simple and flexible API for representing and processing WebAssembly modules. The interpreter, validator, pretty-printer, etc. are built on that foundation. (TODO: an example of writing a new processing pass.)
## Tools