From ebbe3997251add0278cc2de9c18dc43a1895f580 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 19 Jul 2021 13:04:33 -0700 Subject: [PATCH] wasi tutorial: make usage string consistient between rust and c programs (#3098) closes #3093 --- docs/WASI-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WASI-tutorial.md b/docs/WASI-tutorial.md index a5b4ef1b65..d8e070e69a 100644 --- a/docs/WASI-tutorial.md +++ b/docs/WASI-tutorial.md @@ -139,7 +139,7 @@ fn main() { let program = args[0].clone(); if args.len() < 3 { - eprintln!("usage: {} ", program); + eprintln!("usage: {} ", program); return; }