diff --git a/Calc1/ShuntYard.cs b/Calc1/ShuntYard.cs index d70430a..0a34415 100644 --- a/Calc1/ShuntYard.cs +++ b/Calc1/ShuntYard.cs @@ -123,6 +123,7 @@ public static Tuple,string> ShuntRpnModel(List input) } else { + // this is an MF IXL comment added for branch MFDemo1 errorMessage = $"error - unkown operator '{part}'\nValid operators are\n"; errorMessage = Operators.Aggregate(errorMessage, (current, operatorPrecedence) => current + $"{operatorPrecedence.Operator}\n"); }