Skip to content

Commit

Permalink
fix: coder project create -> coder projects create (#390)
Browse files Browse the repository at this point in the history
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`:
<img width="466" alt="Screen Shot 2022-03-01 at 5 31 19 PM" src="https://user-images.githubusercontent.com/88213859/156277646-6fc03977-6dda-4db4-9fce-e48b4b5efba3.png">

Fixing this typo will alleviate some confusion as we on-board developers to v2
  • Loading branch information
bryphe-coder committed Mar 2, 2022
1 parent 7e72eb9 commit 4f93c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/pages/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const ProjectsPage: React.FC = () => {
const description = (
<div>
<div className={styles.descriptionLabel}>Run the following command to get started:</div>
<CodeExample code="coder project create" />
<CodeExample code="coder projects create" />
</div>
)

Expand Down

0 comments on commit 4f93c98

Please sign in to comment.