diff --git a/second/Payment.cs b/second/Payment.cs index 15e1694..de35d0c 100644 --- a/second/Payment.cs +++ b/second/Payment.cs @@ -54,7 +54,7 @@ namespace second public double CalcWithheld() { - double pension = Accrued * 0.01; // I’m old, you know, like I saw the way dinosaurs died + double pension = Accrued * 0.01; // I'm old, you know, like I saw the way dinosaurs died double incomeTax = Accrued * (IncomeTaxPercent / 100.0); Withheld = pension + incomeTax;