We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c34eb0 commit 762e1c7Copy full SHA for 762e1c7
Plugins/Flow.Launcher.Plugin.Calculator/Main.cs
@@ -172,9 +172,9 @@ private static string GetDecimalSeparator()
172
173
private bool IsBracketComplete(string query)
174
{
175
- var matchs = RegBrackets.Matches(query);
+ var matches = RegBrackets.Matches(query);
176
var leftBracketCount = 0;
177
- foreach (Match match in matchs)
+ foreach (Match match in matches)
178
179
if (match.Value == "(" || match.Value == "[")
180
0 commit comments