diff options
author | Aylur <[email protected]> | 2024-10-16 12:47:38 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-16 12:47:38 +0200 |
commit | c012b5699afd401942e1044c204fb6a666d0a094 (patch) | |
tree | 5cd27e5162a84f2ee5310fc698d7b50ee08eddf0 /lib/apps/fuzzy.vala | |
parent | 2ad95e05d83a455bb30503ca4ca0aa8356ea5ff7 (diff) | |
parent | 8368b20eda96674e0f5a502b92d3afb936b71b0b (diff) |
Merge branch 'main' into fix/fuzzy-search
Diffstat (limited to 'lib/apps/fuzzy.vala')
-rw-r--r-- | lib/apps/fuzzy.vala | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/apps/fuzzy.vala b/lib/apps/fuzzy.vala index b77fba7..7745320 100644 --- a/lib/apps/fuzzy.vala +++ b/lib/apps/fuzzy.vala @@ -1,7 +1,5 @@ - namespace AstalApps { - -public int fuzzy_match_string(string pattern, string str) { +private int fuzzy_match_string(string pattern, string str) { const int unmatched_letter_penalty = -1; int score = 100; |