From 0cb8733f31defcf2f7158d23c058fbb92a580215 Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 15 Oct 2024 18:58:12 +0000 Subject: docs: apps doc comments docs: apps doc comments --- lib/apps/fuzzy.vala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/apps/fuzzy.vala') diff --git a/lib/apps/fuzzy.vala b/lib/apps/fuzzy.vala index f93b2eb..97277bd 100644 --- a/lib/apps/fuzzy.vala +++ b/lib/apps/fuzzy.vala @@ -1,11 +1,9 @@ - namespace AstalApps { - private int max(int a, int b) { return a > b ? a : b; } -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; -- cgit v1.2.3