diff --git a/project/src/app.rs b/project/src/app.rs index 3be477f..2d2a952 100644 --- a/project/src/app.rs +++ b/project/src/app.rs @@ -97,12 +97,12 @@ impl App { // Returning the Result if calculation.reversed { SharedString::from(format!( - "Retract the billing date to {} (-{}).", + "Retract the billing date to {} (-{} Days).", calculation.new_date, calculation.days_pushed )) } else { SharedString::from(format!( - "Extend the billing date to {} (+{}).", + "Extend the billing date to {} (+{} Days).", calculation.new_date, calculation.days_pushed )) }