Skip to content

Commit c91a5d2

Browse files
committed
fix incorrect accent range declaration
1 parent 622e808 commit c91a5d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Flow.Launcher.Infrastructure/StringMatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ public MatchResult FuzzyMatch(string query, string stringToCompare, MatchOption
354354
};
355355

356356
private const char AccentRangeStart = '\u00DF';
357-
private const char AccentRangeEnd = '\u017D';
357+
private const char AccentRangeEnd = '\u017E';
358358
private static readonly char[] AccentLookup = BuildAccentLookup();
359359

360360
private static char[] BuildAccentLookup()

0 commit comments

Comments
 (0)