From 1a4cb1d070110f842cc54b5e675108295b88c234 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 30 Jun 2024 10:00:30 +0900 Subject: [PATCH] Update levenshtein costs --- src/option_processing.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/option_processing.cc b/src/option_processing.cc index fe9810de..d95ce753 100644 --- a/src/option_processing.cc +++ b/src/option_processing.cc @@ -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()) {