nicer input prompts

This commit is contained in:
yuni 2024-03-20 06:56:25 +01:00
parent a29ab0cc42
commit 4626e6c1da

View file

@ -352,7 +352,7 @@ fn update(
let mut choices: Vec<String> = Vec::new(); let mut choices: Vec<String> = Vec::new();
let mut count = 1; let mut count = 1;
for choice in &q_choices { for choice in &q_choices {
choices.push(format!("[{}] @{}: {}", choices.push(format!("({}) <{}> {}",
count, choice.recipient, choice.text)); count, choice.recipient, choice.text));
count += 1; count += 1;
} }