diff --git a/Calc1/ShuntYard.cs b/Calc1/ShuntYard.cs index d70430a..276a966 100644 --- a/Calc1/ShuntYard.cs +++ b/Calc1/ShuntYard.cs @@ -10,7 +10,7 @@ namespace Calc1 /// /// The ShuntYard will pull off numbers and operators and place them in a list in RPN order. /// Each operator has a precedence that is used to determine the placement of the operator in - /// relation to the numbers. + /// relation to the numbers. Here is Bill's Comment. /// /// If an unknown operator is encountered it will result in an error. ///