Skip to content

Commit

Permalink
chore: cli typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Sep 23, 2022
1 parent 3cf9505 commit 65d37fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const questions = [
filter: async (input: string): Promise<string> => kebabCase(input).replace(/[^a-z-]/gi, ''),
validate: async (input: string) => {
if (!input.startsWith('k-')) {
return 'The name of a Kongponents should start with \'k-\''
return 'The name of a Kongponent should start with \'k-\''
} else if (input.includes('--')) {
return 'The name should not include a double-dash \'--\''
} else if (input.endsWith('-')) {
Expand Down

0 comments on commit 65d37fa

Please sign in to comment.