word fixes

This commit is contained in:
karl.hudgell 2020-04-30 08:23:35 +01:00
parent 74fa89e795
commit b495b6bdaf

View File

@ -38,7 +38,7 @@ module.exports = {
const questions = [{ const questions = [{
type: "checkbox", type: "checkbox",
name: "removeAppsList", name: "removeAppsList",
message: "What apps do you want to remove?", message: "What apps do you want to restore?",
choices: packages.apps, choices: packages.apps,
}, ]; }, ];
return inquirer.prompt(questions); return inquirer.prompt(questions);
@ -61,7 +61,7 @@ module.exports = {
const questions = [{ const questions = [{
type: "checkbox", type: "checkbox",
name: "removeAppsList", name: "removeAppsList",
message: "What Installed apps do you want to remove?", message: "What Installed apps do you want to install?",
choices: installedApps, choices: installedApps,
}, ]; }, ];
return inquirer.prompt(questions); return inquirer.prompt(questions);