diff --git a/.changeset/mean-garlics-speak.md b/.changeset/mean-garlics-speak.md new file mode 100644 index 0000000..c5796b3 --- /dev/null +++ b/.changeset/mean-garlics-speak.md @@ -0,0 +1,5 @@ +--- +"create-effect-app": patch +--- + +Fixes a typo in the description of the `template` option of ⁠`create-effect-app`. diff --git a/packages/create-effect-app/src/Cli.ts b/packages/create-effect-app/src/Cli.ts index d9c7b19..20a8065 100644 --- a/packages/create-effect-app/src/Cli.ts +++ b/packages/create-effect-app/src/Cli.ts @@ -41,7 +41,7 @@ const exampleType = Options.choice("example", examples).pipe( const templateType = Options.choice("template", templates).pipe( Options.withAlias("t"), Options.withDescription( - "The name of an official Effect example to use to bootstrap the application" + "The name of an official Effect template to use to bootstrap the application" ) ) @@ -363,7 +363,7 @@ const getUserInput = Prompt.select<"example" | "template">({ case "example": { return Prompt.all({ example: Prompt.select({ - message: "What project template should be used?", + message: "What project example should be used?", choices: [ { title: "HTTP Server",