Skip to content

Commit

Permalink
fix: correct subtitle in mise use selector
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 15, 2024
1 parent 8e4b4d1 commit 4be6d79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/use.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ impl Use {
}

fn tool_selector(&self) -> Result<ToolArg> {
let mut s = demand::Select::new("Select a tool to install")
.description("Select a tasks to run")
let mut s = demand::Select::new("Tools")
.description("Select a tool to install")
.filtering(true)
.filterable(true);
for rt in REGISTRY.values().unique_by(|r| r.short) {
Expand Down

0 comments on commit 4be6d79

Please sign in to comment.