mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Typo
This commit is contained in:
parent
0c34eb0096
commit
762e1c75c3
1 changed files with 2 additions and 2 deletions
|
|
@ -172,9 +172,9 @@ namespace Flow.Launcher.Plugin.Calculator
|
|||
|
||||
private bool IsBracketComplete(string query)
|
||||
{
|
||||
var matchs = RegBrackets.Matches(query);
|
||||
var matches = RegBrackets.Matches(query);
|
||||
var leftBracketCount = 0;
|
||||
foreach (Match match in matchs)
|
||||
foreach (Match match in matches)
|
||||
{
|
||||
if (match.Value == "(" || match.Value == "[")
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue