From 480620e192974b4c12f1e912f74881212d5d2cb6 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Tue, 11 Jun 2024 11:51:50 -0400 Subject: [PATCH] mkwin: proofread and clarified help text --- mkwin/src/main.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mkwin/src/main.rs b/mkwin/src/main.rs index a3e49de..b86fc50 100644 --- a/mkwin/src/main.rs +++ b/mkwin/src/main.rs @@ -107,20 +107,20 @@ usage: mkwin [flags] [-- args] args: The target program the resulting script will run. - [-- args] Arguments to forward to the target program. These are - placed before any other arguments if present. + [-- args] Arguments forwarded to the target program. These are placed + before any other arguments in the resulting script. flags: - -h, --help Shows this help text and exit. + -h, --help Show this help text and exit. --empty The resulting script will not pass arguments. - --pc= The resulting script will use the 'path-convert' to convert - arguments from UNIX to DOS, with the provided set of flags - ('x' for no flags). + --pc= The resulting script will use the 'path-convert' tool to + convert arguments from UNIX to DOS, with the provided set of + flags ('x' for no flags). -q, --quiet The resulting script will run the target program in the - background and with its outputs redirected to '/dev/null'.", + background and redirect all output to '/dev/null'.", env!("CARGO_PKG_VERSION")); }