From 8f9ffa066787362318ebde643761f8a3e8c050f0 Mon Sep 17 00:00:00 2001 From: Roxie Gibson Date: Thu, 12 Aug 2021 14:41:35 +0100 Subject: [PATCH] style: correct error formatting ST1005 --- cli/app/remove.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app/remove.go b/cli/app/remove.go index 1c9adaa41..839ecadde 100644 --- a/cli/app/remove.go +++ b/cli/app/remove.go @@ -36,7 +36,7 @@ var appRemoveCommand = &cli.Command{ Action: func(c *cli.Context) error { appName := c.Args().First() if appName == "" { - internal.ShowSubcommandHelpAndError(c, errors.New("No app name provided!")) + internal.ShowSubcommandHelpAndError(c, errors.New("no app name provided")) } if !internal.Force {