last nuget packages and fixed small errors (#5334)

Co-authored-by: Clint Rutkas <crutkas@microsoft.com>
This commit is contained in:
Clint Rutkas
2020-07-30 14:01:02 -07:00
committed by GitHub
parent cfbf3cd4b3
commit d35f1ea802
9 changed files with 22 additions and 32 deletions

View File

@@ -101,7 +101,7 @@ namespace Microsoft.Plugin.Calculator
return new List<Result>();
}
private bool IsBracketComplete(string query)
private static bool IsBracketComplete(string query)
{
var matchs = RegBrackets.Matches(query);
var leftBracketCount = 0;