From 49be906386687487a1bbb2835f0ee29272f84240 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 16 Jul 2024 10:47:39 -0700 Subject: [PATCH] Improve input label specificity. --- src/System/Date/addDays/System_Date_addDays.cls | 2 +- src/System/Date/addMonths/System_Date_addMonths.cls | 2 +- src/System/Date/addYears/System_Date_addYears.cls | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/System/Date/addDays/System_Date_addDays.cls b/src/System/Date/addDays/System_Date_addDays.cls index 43705b1..33192c0 100644 --- a/src/System/Date/addDays/System_Date_addDays.cls +++ b/src/System/Date/addDays/System_Date_addDays.cls @@ -22,7 +22,7 @@ global class System_Date_addDays { } global class Request { - @InvocableVariable(required='true' label='Date' description='Date to be incremented.') + @InvocableVariable(required='true' label='Old Date' description='Date to be incremented.') global Date oldDate; @InvocableVariable(required='true' label='Additional Days' description='Number of days to be added to the Date.') diff --git a/src/System/Date/addMonths/System_Date_addMonths.cls b/src/System/Date/addMonths/System_Date_addMonths.cls index d0d6452..e583bc2 100644 --- a/src/System/Date/addMonths/System_Date_addMonths.cls +++ b/src/System/Date/addMonths/System_Date_addMonths.cls @@ -22,7 +22,7 @@ global class System_Date_addMonths { } global class Request { - @InvocableVariable(required='true' label='Date' description='Date to be incremented.') + @InvocableVariable(required='true' label='Old Date' description='Date to be incremented.') global Date oldDate; @InvocableVariable(required='true' label='Additional Months' description='Number of months to be added to the Date.') diff --git a/src/System/Date/addYears/System_Date_addYears.cls b/src/System/Date/addYears/System_Date_addYears.cls index 71e190a..96afeb9 100644 --- a/src/System/Date/addYears/System_Date_addYears.cls +++ b/src/System/Date/addYears/System_Date_addYears.cls @@ -22,7 +22,7 @@ global class System_Date_addYears { } global class Request { - @InvocableVariable(required='true' label='Date' description='Date to be incremented.') + @InvocableVariable(required='true' label='Old Date' description='Date to be incremented.') global Date oldDate; @InvocableVariable(required='true' label='Additional Years' description='Number of years to be added to the Date.') -- 2.52.0