diff options
author | Raphael Graf <r@undefined.ch> | 2018-08-03 06:05:14 +0200 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2018-08-02 21:05:14 -0700 |
commit | 7ce1b98bec018c13b5c8e3875688bed43f1f2935 (patch) | |
tree | 8bc154e64f2ad5a808d2a1410eda09d96d8df044 /README.md | |
parent | b877bb84316b511c260dfce4d3e8ca1964ec4917 (diff) | |
download | wabt-7ce1b98bec018c13b5c8e3875688bed43f1f2935.tar.gz wabt-7ce1b98bec018c13b5c8e3875688bed43f1f2935.tar.bz2 wabt-7ce1b98bec018c13b5c8e3875688bed43f1f2935.zip |
Remove short option for --help (#877)
Resolves #872
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -149,10 +149,10 @@ $ out/wat2wasm spec-test.wast -v $ out/wast2json spec-test.wast -o spec-test.json ``` -You can use `-h` to get additional help: +You can use `--help` to get additional help: ```console -$ out/wat2wasm -h +$ out/wat2wasm --help ``` Or try the [online demo](https://cdn.rawgit.com/WebAssembly/wabt/aae5a4b7/demo/wat2wasm/). @@ -169,10 +169,10 @@ $ out/wasm2wat test.wasm -o test.wat $ out/wasm2wat test.wasm -o test.wat ``` -You can use `-h` to get additional help: +You can use `--help` to get additional help: ```console -$ out/wasm2wat -h +$ out/wasm2wat --help ``` Or try the [online demo](https://cdn.rawgit.com/WebAssembly/wabt/aae5a4b7/demo/wasm2wat/). @@ -199,10 +199,10 @@ $ out/wasm-interp test.json --spec $ out/wasm-interp test.wasm -V 100 --run-all-exports ``` -You can use `-h` to get additional help: +You can use `--help` to get additional help: ```console -$ out/wasm-interp -h +$ out/wasm-interp --help ``` ## Running wasm2c |