From ecf39f814ae6b8fa7c6b35f6cfccb3c7570dd430 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Thu, 12 Sep 2019 20:56:11 -0700 Subject: [PATCH] Wasmer run can run text wat files, not webassembly spectest files. --- src/bin/wasmer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/wasmer.rs b/src/bin/wasmer.rs index 2eff703a6..f9cffd1ae 100644 --- a/src/bin/wasmer.rs +++ b/src/bin/wasmer.rs @@ -64,7 +64,7 @@ mod wasmer_wasi { #[structopt(name = "wasmer", about = "Wasm execution runtime.", author)] /// The options for the wasmer Command Line Interface enum CLIOptions { - /// Run a WebAssembly file. Formats accepted: wasm, wast + /// Run a WebAssembly file. Formats accepted: wasm, wat #[structopt(name = "run")] Run(Run),