From dc122027573a5dd809c6494109f6efc53e3e227a Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Fri, 18 Jun 2021 09:43:55 +0300 Subject: [PATCH] [#624] cli/util: Sync command description's capitalization Signed-off-by: Pavel Karpy --- cmd/neofs-cli/modules/util.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/neofs-cli/modules/util.go b/cmd/neofs-cli/modules/util.go index 65457815e..f7420eff2 100644 --- a/cmd/neofs-cli/modules/util.go +++ b/cmd/neofs-cli/modules/util.go @@ -32,35 +32,35 @@ var ( signCmd = &cobra.Command{ Use: "sign", - Short: "sign NeoFS structure", + Short: "Sign NeoFS structure", } signBearerCmd = &cobra.Command{ Use: "bearer-token", - Short: "sign bearer token to use it in requests", + Short: "Sign bearer token to use it in requests", RunE: signBearerToken, } signSessionCmd = &cobra.Command{ Use: "session-token", - Short: "sign session token to use it in requests", + Short: "Sign session token to use it in requests", RunE: signSessionToken, } convertCmd = &cobra.Command{ Use: "convert", - Short: "convert representation of NeoFS structures", + Short: "Convert representation of NeoFS structures", } convertEACLCmd = &cobra.Command{ Use: "eacl", - Short: "convert representation of extended ACL table", + Short: "Convert representation of extended ACL table", RunE: convertEACLTable, } keyerCmd = &cobra.Command{ Use: "keyer", - Short: "generate or print information about keys", + Short: "Generate or print information about keys", RunE: processKeyer, } )