From 04f00a619fced53299c4dbfed05fc8a0973ec408 Mon Sep 17 00:00:00 2001 From: Andrei Popescu Date: Thu, 16 Jul 2020 22:54:09 +0300 Subject: [PATCH] deployerwhitelist/cmd.go: Grammar deployerwhitelist/cmd.go: Grammar --- cmd/loom/deployerwhitelist/cmd.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/loom/deployerwhitelist/cmd.go b/cmd/loom/deployerwhitelist/cmd.go index 55b9e158b4..02969062f1 100644 --- a/cmd/loom/deployerwhitelist/cmd.go +++ b/cmd/loom/deployerwhitelist/cmd.go @@ -43,7 +43,7 @@ func addDeployerCmd() *cobra.Command { var flags cli.ContractCallFlags cmd := &cobra.Command{ Use: "add ", - Short: "Add deployer with permision to deployer list", + Short: "Add a deployer with permission to the deployer list", Example: addDeployerCmdExample, Args: cobra.MinimumNArgs(2), RunE: func(cmd *cobra.Command, args []string) error { @@ -65,7 +65,7 @@ func addDeployerCmd() *cobra.Command { uint32(dw.AllowMigrationFlag), ) } else { - return fmt.Errorf("Please specify deploy permission (go|evm|any)") + return fmt.Errorf("Please specify permissions (go|evm|any) for the new deployer") } cmd.SilenceUsage = true @@ -120,7 +120,7 @@ func getDeployerCmd() *cobra.Command { var flags cli.ContractCallFlags cmd := &cobra.Command{ Use: "get ", - Short: "Show current permissions of a deployer", + Short: "Show current permissions for a deployer", Example: getDeployerCmdExample, RunE: func(cmd *cobra.Command, args []string) error { addr, err := cli.ResolveAccountAddress(args[0], &flags)