Skip to content

Commit

Permalink
no change to test pipelines (#930)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucGenetier authored Dec 20, 2022
1 parent 23cd2f0 commit a48e1a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tools/Repl/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ private static void ResetEngine()
config.AddFunction(new ImportFunction());

var optionsSet = new OptionSet("Options", DisplayNameUtility.MakeUnique(new Dictionary<string, string>()
{
{ OptionFormatTable, OptionFormatTable },
}));
{
{ OptionFormatTable, OptionFormatTable },
}));

config.AddOptionSet(optionsSet);

Expand Down Expand Up @@ -105,7 +105,7 @@ public static bool TryMatchSet(string expr, out string arg0name, out FormulaValu
{
var arg1Type = check.ReturnType;

varValue = check.GetEvaluator().Eval();
varValue = check.GetEvaluator().Eval();
_engine.UpdateVariable(arg0name, varValue);

return true;
Expand Down Expand Up @@ -244,7 +244,7 @@ public static string ReadFormula(TextReader input, bool echo)
foreach (var c in exprPartial)
{
// don't need to worry about escaping as it looks like two
if (c == '"' && !singleQuote)
if (c == '"' && !singleQuote)
{
doubleQuote = !doubleQuote; // strings that are back to back
}
Expand Down

0 comments on commit a48e1a7

Please sign in to comment.