From 4f93c98f5790163f332fe723c714b1aba34bfeab Mon Sep 17 00:00:00 2001 From: Bryan Date: Tue, 1 Mar 2022 18:08:36 -0800 Subject: [PATCH] fix: coder project create -> coder projects create (#390) While going through the create projects flow, I realized there's a typo on the projects page. The command should read `coder projects create`, but instead it is currently showing `coder project create`: Screen Shot 2022-03-01 at 5 31 19 PM Fixing this typo will alleviate some confusion as we on-board developers to v2 --- site/pages/projects/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/pages/projects/index.tsx b/site/pages/projects/index.tsx index 105216e069..22bcee5e47 100644 --- a/site/pages/projects/index.tsx +++ b/site/pages/projects/index.tsx @@ -55,7 +55,7 @@ const ProjectsPage: React.FC = () => { const description = (
Run the following command to get started:
- +
)