mirror of
https://github.com/nushell/nushell
synced 2025-01-14 14:14:13 +00:00
Fix search terms for str distance
(#6398)
Redundancy with the command name is unnecessary and now tested since #6380 Fixes CI failure
This commit is contained in:
parent
0afe1e4e67
commit
ab77bf3289
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ impl Command for SubCommand {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn search_terms(&self) -> Vec<&str> {
|
fn search_terms(&self) -> Vec<&str> {
|
||||||
vec!["edit", "distance", "levenshtein"]
|
vec!["edit", "match", "score", "levenshtein"]
|
||||||
}
|
}
|
||||||
|
|
||||||
fn run(
|
fn run(
|
||||||
|
|
Loading…
Reference in a new issue