mirror of
https://github.com/aria2/aria2.git
synced 2025-04-03 04:27:38 +03:00
Update levenshtein costs
This commit is contained in:
parent
cfa7e9cde0
commit
1a4cb1d070
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ void showCandidates(const std::string& unknownOption,
|
|||
continue;
|
||||
}
|
||||
// cost values are borrowed from git, help.c.
|
||||
int sim = levenshtein(optstr, pref->k, 0, 2, 1, 4);
|
||||
int sim = levenshtein(optstr, pref->k, 0, 2, 1, 3);
|
||||
cands.push_back(std::make_pair(sim, pref));
|
||||
}
|
||||
if (cands.empty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue