diff --git a/mkwin/src/main.rs b/mkwin/src/main.rs index af757a3..a3e49de 100644 --- a/mkwin/src/main.rs +++ b/mkwin/src/main.rs @@ -100,12 +100,13 @@ pub fn main() { pub fn help_text() { println!("mkwin v{} Valerie Wolfe -Quickly make bash scripts to run windows programs in WSL. +Quickly make bash scripts to run Windows programs from WSL. 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. @@ -120,5 +121,6 @@ flags: -q, --quiet The resulting script will run the target program in the background and with its outputs redirected to '/dev/null'.", -env!("CARGO_PKG_VERSION"));} +env!("CARGO_PKG_VERSION")); +}