Skip to content

Commit 03164fb

Browse files
Fix typos
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent d2f8663 commit 03164fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Flow.Launcher.Infrastructure/StringMatcher.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ private static string RemoveAccents(string value)
246246

247247
foreach (char c in normalized)
248248
{
249-
var unicodedCategory = Char.GetUnicodeCategory(c);
250-
if (unicodedCategory != UnicodeCategory.NonSpacingMark)
249+
var unicodeCategory = char.GetUnicodeCategory(c);
250+
if (unicodeCategory != UnicodeCategory.NonSpacingMark)
251251
sb.Append(c);
252252
}
253253

0 commit comments

Comments
 (0)