From b495b6bdaf9ef430678a9ed3529aafa6d8339641 Mon Sep 17 00:00:00 2001 From: "karl.hudgell" Date: Thu, 30 Apr 2020 08:23:35 +0100 Subject: [PATCH] word fixes --- lib/inquirer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/inquirer.js b/lib/inquirer.js index f06465f..96e3b81 100644 --- a/lib/inquirer.js +++ b/lib/inquirer.js @@ -38,7 +38,7 @@ module.exports = { const questions = [{ type: "checkbox", name: "removeAppsList", - message: "What apps do you want to remove?", + message: "What apps do you want to restore?", choices: packages.apps, }, ]; return inquirer.prompt(questions); @@ -61,7 +61,7 @@ module.exports = { const questions = [{ type: "checkbox", name: "removeAppsList", - message: "What Installed apps do you want to remove?", + message: "What Installed apps do you want to install?", choices: installedApps, }, ]; return inquirer.prompt(questions);