summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-11 20:41:45 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-11 20:41:45 -0800
commit7176e82d1e3dd728b2f36913693f31cc89fda31d (patch)
treeb2d2e911c1f067efbd539294077aa52e051ba76c
parent17a0a9dfd614859d46d9021c71e4d7e9928573dc (diff)
downloadbinaryen-7176e82d1e3dd728b2f36913693f31cc89fda31d.tar.gz
binaryen-7176e82d1e3dd728b2f36913693f31cc89fda31d.tar.bz2
binaryen-7176e82d1e3dd728b2f36913693f31cc89fda31d.zip
fix
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a7dab70e9..3f1e5bee3 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]([wasm.h](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 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.
## Tools