From 1f8566637708d3e586fa0f4ba9fa59f7f0a76c65 Mon Sep 17 00:00:00 2001 From: Maddox Werts Date: Fri, 1 Aug 2025 17:18:51 -0400 Subject: [PATCH] Added Days Message --- project/src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 )) }