Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammar in CLI info message about errors #461

Merged
merged 3 commits into from Jun 10, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/poor-ravens-explode.md
@@ -0,0 +1,5 @@
---
"@preconstruct/cli": patch
---

Fixed grammar in CLI info message about errors
2 changes: 1 addition & 1 deletion packages/cli/src/cli.ts
Expand Up @@ -105,7 +105,7 @@ class CommandNotFoundError extends Error {}
);
}
info(
"If want to learn more about the above error, check https://preconstruct.tools/errors"
"If you want to learn more about the above error, check https://preconstruct.tools/errors"
);
info(
"If the error is not there and you want to learn more about it, open an issue at https://github.com/preconstruct/preconstruct/issues/new"
Expand Down