Skip to content

Commit d88d803

Browse files
authored
chore: remove typo in create-effect-app CLI option description (#68)
1 parent 7b85176 commit d88d803

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.changeset/mean-garlics-speak.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-effect-app": patch
3+
---
4+
5+
Fixes a typo in the description of the `template` option of ⁠`create-effect-app`.

packages/create-effect-app/src/Cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const exampleType = Options.choice("example", examples).pipe(
4141
const templateType = Options.choice("template", templates).pipe(
4242
Options.withAlias("t"),
4343
Options.withDescription(
44-
"The name of an official Effect example to use to bootstrap the application"
44+
"The name of an official Effect template to use to bootstrap the application"
4545
)
4646
)
4747

@@ -363,7 +363,7 @@ const getUserInput = Prompt.select<"example" | "template">({
363363
case "example": {
364364
return Prompt.all({
365365
example: Prompt.select<Example>({
366-
message: "What project template should be used?",
366+
message: "What project example should be used?",
367367
choices: [
368368
{
369369
title: "HTTP Server",

0 commit comments

Comments
 (0)