diff options
author | Clemens Backes <clemensb@chromium.org> | 2022-04-01 18:06:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 09:06:08 -0700 |
commit | fc7911ef019d27104ba8b53be5ae058c0a33a0d2 (patch) | |
tree | 23e818576237a347b5567b52866285083960a58b | |
parent | f7052ea934058339662e34e3472090df48a377e3 (diff) | |
download | binaryen-fc7911ef019d27104ba8b53be5ae058c0a33a0d2.tar.gz binaryen-fc7911ef019d27104ba8b53be5ae058c0a33a0d2.tar.bz2 binaryen-fc7911ef019d27104ba8b53be5ae058c0a33a0d2.zip |
Fix typo (WASM -> Wasm) (#4565)
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ This repository contains code that builds the following tools in `bin/`: performs emscripten-specific passes over it. * **wasm-ctor-eval**: A tool that can execute functions (or parts of functions) at compile time. - * **binaryen.js**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing WASM modules](https://github.com/WebAssembly/binaryen/blob/main/test/binaryen.js/hello-world.js). For builds, see [binaryen.js on npm](https://www.npmjs.com/package/binaryen) (or download it directly from [github](https://raw.githubusercontent.com/AssemblyScript/binaryen.js/master/index.js), [rawgit](https://cdn.rawgit.com/AssemblyScript/binaryen.js/master/index.js), or [unpkg](https://unpkg.com/binaryen@latest/index.js)). + * **binaryen.js**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing Wasm modules](https://github.com/WebAssembly/binaryen/blob/main/test/binaryen.js/hello-world.js). For builds, see [binaryen.js on npm](https://www.npmjs.com/package/binaryen) (or download it directly from [github](https://raw.githubusercontent.com/AssemblyScript/binaryen.js/master/index.js), [rawgit](https://cdn.rawgit.com/AssemblyScript/binaryen.js/master/index.js), or [unpkg](https://unpkg.com/binaryen@latest/index.js)). Usage instructions for each are below. |