From 548f6766e47552607909a0b71f6e2e678702d94d Mon Sep 17 00:00:00 2001 From: Mari Date: Wed, 1 Sep 2021 20:41:11 -0400 Subject: [PATCH] Fix text of promptForYaml --- src/schemata/YAMLPrompt.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schemata/YAMLPrompt.ts b/src/schemata/YAMLPrompt.ts index 7e7e0ad..e0dcf5e 100644 --- a/src/schemata/YAMLPrompt.ts +++ b/src/schemata/YAMLPrompt.ts @@ -58,8 +58,8 @@ export async function promptForYaml({schema, currentValue, name}: YamlP type: "expand", message: "Choose how to proceed:", choices: [ - {key: "r", name: "Retry edits with current text", value: RETRY}, - {key: "a", name: "Abort editing and keep original state", value: ABORT} + {key: "r", name: "Retry editing current text", value: RETRY}, + {key: "a", name: "Abort editing and reset to original state", value: ABORT} ], }) switch (option) {