From 0df5398d8e469b96599bc6db65a9a38644137e7b Mon Sep 17 00:00:00 2001 From: Dave Dean Date: Wed, 3 Apr 2019 23:01:38 +0000 Subject: [PATCH] Added a comment --- Calc1/ShuntYard.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Calc1/ShuntYard.cs b/Calc1/ShuntYard.cs index d70430a..b810840 100644 --- a/Calc1/ShuntYard.cs +++ b/Calc1/ShuntYard.cs @@ -11,6 +11,8 @@ 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. + /// + /// Added this comment /// /// If an unknown operator is encountered it will result in an error. ///