From c4a06774fdf6fdb11553879fb9feec788f5fdef7 Mon Sep 17 00:00:00 2001 From: Khem Veasna Date: Thu, 30 Nov 2017 16:42:21 -0500 Subject: [PATCH] Fix 'mashling help' screen's formatting issue * It was showing a mixture of uppercase and lowercase for the first character. --- cli/app/create.go | 2 +- cli/app/list.go | 2 +- cli/app/validate.go | 4 ++-- cli/app/version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/app/create.go b/cli/app/create.go index d01ceaaa..983b257f 100644 --- a/cli/app/create.go +++ b/cli/app/create.go @@ -26,7 +26,7 @@ import ( var optCreate = &cli.OptionInfo{ Name: "create", UsageLine: "create AppName", - Short: "create a mashling gateway", + Short: "Create a mashling gateway", Long: `Creates a mashling gateway. Options: diff --git a/cli/app/list.go b/cli/app/list.go index 85ac9834..6712ad10 100644 --- a/cli/app/list.go +++ b/cli/app/list.go @@ -16,7 +16,7 @@ import ( var optList = &cli.OptionInfo{ Name: "list", UsageLine: "list [triggers|handlers|links|all]", - Short: "list installed components in the mashling gateway recipe", + Short: "List installed components in the mashling gateway recipe", Long: `List installed components in the mashling gateway recipe.`, } diff --git a/cli/app/validate.go b/cli/app/validate.go index 5a4edd0a..b5863c11 100644 --- a/cli/app/validate.go +++ b/cli/app/validate.go @@ -17,8 +17,8 @@ import ( var optValidate = &cli.OptionInfo{ Name: "validate", UsageLine: "validate gatewayJson", - Short: "validate gateway JSON", - Long: "validate gateway JSON", + Short: "Validate gateway JSON", + Long: "Validate gateway JSON", } type cmdValidate struct { diff --git a/cli/app/version.go b/cli/app/version.go index 4f2ff392..3c402036 100644 --- a/cli/app/version.go +++ b/cli/app/version.go @@ -17,7 +17,7 @@ import ( var optVersion = &cli.OptionInfo{ Name: "version", UsageLine: "version", - Short: "version of mashling", + Short: "Version of mashling", Long: "Displays the version of mashling", }