Revert "Reapply "Fix Typo""

This reverts commit 3bc06ac639.
This commit is contained in:
Koisu 2025-06-20 12:38:59 -07:00
parent 91e35826f0
commit bfb2adf189

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 == "[")
{