From 86386b2ef0809eb81da58a3fe507b11ff49ed0f8 Mon Sep 17 00:00:00 2001 From: Talison Fabio <54823205+talis-fb@users.noreply.github.com> Date: Sat, 22 Mar 2025 22:48:45 -0300 Subject: [PATCH] chore: fix ChoicePrompt doc --- src/utils/question.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/question.rs b/src/utils/question.rs index b826415..bf8bc7e 100644 --- a/src/utils/question.rs +++ b/src/utils/question.rs @@ -134,7 +134,7 @@ pub fn user_wants_to_continue( /// Choise dialog for end user with [option1/option2/...] question. /// Each option is a [Choice] entity, holding a value "T" returned when that option is selected pub struct ChoicePrompt<'a, T: Default> { - /// The message to be displayed with the placeholder text in it. + /// The message to be displayed before the options /// e.g.: "Do you want to overwrite 'FILE'?" pub prompt: String,