From 0997030f0bb0034f1149970ebe7a40142795d970 Mon Sep 17 00:00:00 2001 From: Aidan Delaney Date: Mon, 27 Feb 2023 06:24:57 +0000 Subject: [PATCH] Fix typo in pack stack suggest Stack suggest should use the singular of stack, not stacks. Signed-off-by: Aidan Delaney --- internal/commands/stack_suggest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/stack_suggest.go b/internal/commands/stack_suggest.go index 15ef1e2a0e..341e35a20c 100644 --- a/internal/commands/stack_suggest.go +++ b/internal/commands/stack_suggest.go @@ -54,7 +54,7 @@ func stackSuggest(logger logging.Logger) *cobra.Command { Use: "suggest", Args: cobra.NoArgs, Short: "List the recommended stacks", - Example: "pack stacks suggest", + Example: "pack stack suggest", RunE: logError(logger, func(*cobra.Command, []string) error { Suggest(logger) return nil