Revert "Fix Typo"

This reverts commit 762e1c75c3.
This commit is contained in:
Koisu 2025-06-20 12:10:53 -07:00
parent 8d8388be61
commit 9eb4e64573

View file

@ -172,9 +172,9 @@ namespace Flow.Launcher.Plugin.Calculator
private bool IsBracketComplete(string query)
{
var matches = RegBrackets.Matches(query);
var matchs = RegBrackets.Matches(query);
var leftBracketCount = 0;
foreach (Match match in matches)
foreach (Match match in matchs)
{
if (match.Value == "(" || match.Value == "[")
{