From 057a92695c25a0e84cdd2981e1f8b641fce9d79b Mon Sep 17 00:00:00 2001 From: G r e y Date: Wed, 13 Apr 2022 11:18:31 -0400 Subject: [PATCH] fix: typo in create workspaces command hint Resolves: #994 --- cli/templatecreate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/templatecreate.go b/cli/templatecreate.go index d2f1219094438..8d0ebb1f1fb26 100644 --- a/cli/templatecreate.go +++ b/cli/templatecreate.go @@ -113,7 +113,7 @@ func templateCreate() *cobra.Command { "The "+cliui.Styles.Keyword.Render(templateName)+" template has been created! "+ "Developers can provision a workspace with this template using:")+"\n") - _, _ = fmt.Fprintln(cmd.OutOrStdout(), " "+cliui.Styles.Code.Render("coder workspace create "+templateName)) + _, _ = fmt.Fprintln(cmd.OutOrStdout(), " "+cliui.Styles.Code.Render("coder workspaces create "+templateName)) _, _ = fmt.Fprintln(cmd.OutOrStdout()) return nil