From 33f12919253e0d04b373efe71f24bd1dee0b8f69 Mon Sep 17 00:00:00 2001 From: Bill F Date: Wed, 3 Apr 2019 19:00:20 -0400 Subject: [PATCH 1/2] My commit --- Calc1/ShuntYard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calc1/ShuntYard.cs b/Calc1/ShuntYard.cs index d70430a..f5c8217 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 Cooment. /// /// If an unknown operator is encountered it will result in an error. /// From b67d7f282f883b0fae679a8a73b26af65aa746c9 Mon Sep 17 00:00:00 2001 From: Bill F Date: Wed, 3 Apr 2019 19:09:42 -0400 Subject: [PATCH 2/2] Corrected spelling error. --- Calc1/ShuntYard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calc1/ShuntYard.cs b/Calc1/ShuntYard.cs index f5c8217..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. Here is Bill's Cooment. + /// relation to the numbers. Here is Bill's Comment. /// /// If an unknown operator is encountered it will result in an error. ///