Skip to content

chore: remove typo in create-effect-app CLI option description #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/mean-garlics-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-effect-app": patch
---

Fixes a typo in the description of the `template` option of ⁠`create-effect-app`.
4 changes: 2 additions & 2 deletions packages/create-effect-app/src/Cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
)

Expand Down Expand Up @@ -363,7 +363,7 @@ const getUserInput = Prompt.select<"example" | "template">({
case "example": {
return Prompt.all({
example: Prompt.select<Example>({
message: "What project template should be used?",
message: "What project example should be used?",
choices: [
{
title: "HTTP Server",
Expand Down
Loading