diff --git a/dev-cli/src/commands/init.js b/dev-cli/src/commands/init.js index c8c4d8642..897b301ad 100644 --- a/dev-cli/src/commands/init.js +++ b/dev-cli/src/commands/init.js @@ -19,10 +19,10 @@ export async function init ({ lang = 'lua' }, name) { export const command = new Command() .description('Create an ao Process Source Project') - .usage('-l cpp ') + .usage('-l c ') .option( '-l, --lang ', - 'The starter to use. Defaults to Lua. Options are "lua" and "cpp"' + 'The starter to use. Defaults to Lua. Options are "lua" and "c"' ) .arguments('') .action(init)