summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-28 21:35:48 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-28 21:35:48 -0800
commitf1cb59bda5688f761fadad997bda18658bf9a32c (patch)
treeaa3224aaa758625a86db1d4d815aa3ee98a86b30
parentb2aef8cfb300f5095486e66c59cf4fd0dd7bf320 (diff)
downloadbinaryen-f1cb59bda5688f761fadad997bda18658bf9a32c.tar.gz
binaryen-f1cb59bda5688f761fadad997bda18658bf9a32c.tar.bz2
binaryen-f1cb59bda5688f761fadad997bda18658bf9a32c.zip
readme fix
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 10b9aa2ec..2a68377a4 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ This repository contains code that builds the following tools in `bin/`:
* **binaryen-shell**: A shell that can load and interpret WebAssembly code in S-Expression format, as well as run transformation passes on it. It can also run the spec test suite.
* **asm2wasm**: An asm.js-to-WebAssembly compiler, built on Emscripten's asm optimizer infrastructure. That can directly compile asm.js to WebAssembly.
- * **wasm.js**: A WebAssembly-to-JavaScript bridge. wasm.js contains Binaryen components compiled to JavaScript, including the interpreter, asm2wasm, the S-Expression parser, etc., which allow you to load WebAssembly and execute it even if the browser doesn't have native support yet. Having `asm2wasm` also gives the option to take an asm.js build and execute it as WebAssembly, which is useful for testing.
+ * **wasm.js**: A WebAssembly-to-JavaScript bridge. wasm.js contains Binaryen components compiled to JavaScript, including the interpreter, `asm2wasm`, the S-Expression parser, etc., which allow you to load WebAssembly and execute it even if the browser doesn't have native support yet. Having `asm2wasm` also gives the option to take an asm.js build and execute it as WebAssembly, which is useful for testing.
Usage instructions for each are below.