Skip to content

Commit 601d4c8

Browse files
Fix spelling (#463)
1 parent faa8f38 commit 601d4c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli/commands/create.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ async function createProject(cwd: ProjectPath, options: Options) {
134134
language: () => {
135135
if (options.types) return Promise.resolve(options.types);
136136
return p.select<LanguageType>({
137-
message: 'Add type checking with Typescript?',
137+
message: 'Add type checking with TypeScript?',
138138
initialValue: 'typescript',
139139
options: [
140-
{ label: 'Yes, using Typescript syntax', value: 'typescript' },
141-
{ label: 'Yes, using Javascript with JSDoc comments', value: 'checkjs' },
140+
{ label: 'Yes, using TypeScript syntax', value: 'typescript' },
141+
{ label: 'Yes, using JavaScript with JSDoc comments', value: 'checkjs' },
142142
{ label: 'No', value: 'none' }
143143
]
144144
});

0 commit comments

Comments
 (0)