Skip to content

Commit 762e1c7

Browse files
Fix Typo
1 parent 0c34eb0 commit 762e1c7

File tree

1 file changed

+2
-2
lines changed
  • Plugins/Flow.Launcher.Plugin.Calculator

1 file changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Calculator/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ private static string GetDecimalSeparator()
172172

173173
private bool IsBracketComplete(string query)
174174
{
175-
var matchs = RegBrackets.Matches(query);
175+
var matches = RegBrackets.Matches(query);
176176
var leftBracketCount = 0;
177-
foreach (Match match in matchs)
177+
foreach (Match match in matches)
178178
{
179179
if (match.Value == "(" || match.Value == "[")
180180
{

0 commit comments

Comments
 (0)