summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-11 20:42:10 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-11 20:42:10 -0800
commitd66ced45eeab6f890972a4789789164f026cb259 (patch)
treefdd0d7cc06e7cb4062448d197d858356869fd9f4
parent7176e82d1e3dd728b2f36913693f31cc89fda31d (diff)
downloadbinaryen-d66ced45eeab6f890972a4789789164f026cb259.tar.gz
binaryen-d66ced45eeab6f890972a4789789164f026cb259.tar.bz2
binaryen-d66ced45eeab6f890972a4789789164f026cb259.zip
fix
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3f1e5bee3..ee9f0aaa6 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Binaryen is a C++ library for WebAssembly. It can:
* **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 API for **representing and processing** WebAssembly modules. The interpreter, validator, pretty-printer, etc. are built on that foundation. The core of this is in [wasm.h](https://github.com/WebAssembly/binaryen/blob/master/src/wasm.h), which contains both classes that define a WebAssembly module, and tools to process those. For a simple example of how to use Binaryen, see [test/example/find_div0s.cpp](https://github.com/WebAssembly/binaryen/blob/master/test/example/find_div0s.cpp), which creates a module and then searches it for a specific pattern.
+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. The core of this is in [wasm.h](https://github.com/WebAssembly/binaryen/blob/master/src/wasm.h), which contains classes that define a WebAssembly module, and tools to process those. For a simple example of how to use Binaryen, see [test/example/find_div0s.cpp](https://github.com/WebAssembly/binaryen/blob/master/test/example/find_div0s.cpp), which creates a module and then searches it for a specific pattern.
## Tools