From 386cc552e8bf7d6ff04a64c9557a2c4919b501b6 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 13 Oct 2023 13:03:09 -0400 Subject: [PATCH] Fix prompt in `select.rs` example --- examples/select.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/select.rs b/examples/select.rs index 3382e8bc..d282c20b 100644 --- a/examples/select.rs +++ b/examples/select.rs @@ -31,7 +31,7 @@ fn main() { } let selection = Select::with_theme(&ColorfulTheme::default()) - .with_prompt("Optionally pick your flavor, hint it might be on the second page") + .with_prompt("Pick your flavor, hint it might be on the second page") .default(0) .max_length(2) .items(&selections[..])