mirror of
https://github.com/nushell/nushell
synced 2024-11-10 23:24:14 +00:00
feat: add search terms to random & typo fix (#5652)
Co-authored-by: chinsaw <chinsaw@example.com>
This commit is contained in:
parent
507f24d029
commit
d4bfbb5eaf
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ impl Command for RandomCommand {
|
|||
}
|
||||
|
||||
fn usage(&self) -> &str {
|
||||
"Generate a random values."
|
||||
"Generate a random value."
|
||||
}
|
||||
|
||||
fn search_terms(&self) -> Vec<&str> {
|
||||
vec!["generate", "generator"]
|
||||
}
|
||||
|
||||
fn run(
|
||||
|
|
Loading…
Reference in a new issue