From 6edd7cb03600b8523fc5e8f7c4bec8dca27ca691 Mon Sep 17 00:00:00 2001 From: G r e y Date: Wed, 13 Apr 2022 11:30:58 -0400 Subject: [PATCH] fix: typo in create workspaces command hint (#995) Resolves: #994 --- cli/templatecreate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/templatecreate.go b/cli/templatecreate.go index d2f1219094..8d0ebb1f1f 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