From 51d5514312aa67c66e9d2cba03a60089f9e7395b Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Mon, 4 Nov 2024 23:37:13 +0900 Subject: [PATCH] fortify: improve help message wording Signed-off-by: Ophestra Umiker --- main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 0ca5c93..7ac8590 100644 --- a/main.go +++ b/main.go @@ -51,12 +51,12 @@ func main() { fmt.Println("Commands:") w := tabwriter.NewWriter(os.Stdout(), 0, 1, 4, ' ', 0) commands := [][2]string{ - {"app", "Launch app from specified config file"}, - {"run", "Start a permissive default sandbox"}, - {"ps", "Show state information of active apps"}, + {"app", "Launch app defined by the specified config file"}, + {"run", "Configure and start a permissive default sandbox"}, + {"ps", "List active apps and their state"}, {"version", "Show fortify version"}, {"license", "Show full license text"}, - {"template", "Product a full config template"}, + {"template", "Product a config template"}, {"help", "Show this help message"}, } for _, c := range commands {