fix: typo in create workspaces command hint (#995)

Resolves: #994
This commit is contained in:
G r e y
2022-04-13 15:30:58 +00:00
committed by GitHub
parent 770c567123
commit 6edd7cb036
+1 -1
View File
@@ -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