Reapply "Fix Typo"

This reverts commit 9eb4e64573.
This commit is contained in:
Koisu 2025-06-20 12:10:59 -07:00
parent 9eb4e64573
commit 3bc06ac639

View file

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