]> git.codecow.com Git - flowpex.git/commitdiff
Fix Apex action labels.
authorChris Duncan <chris@flowpex.dev>
Fri, 12 Jul 2024 20:19:37 +0000 (13:19 -0700)
committerChris Duncan <chris@flowpex.dev>
Fri, 12 Jul 2024 20:19:37 +0000 (13:19 -0700)
src/System/Date/dayOfYear/System_Date_dayOfYear.cls
src/System/Date/daysBetween/System_Date_daysBetween.cls

index b53f24842a1bdd853cc266ef465c595f02220c59..c0559be779022e4049cc147a29a4063aa1d5fd78 100644 (file)
@@ -5,7 +5,7 @@
 \r
 global class System_Date_dayOfYear {\r
 \r
-    @InvocableMethod(label='System.Date.day()' category='Flowpex' iconName='slds:standard:date_input' description='Returns the day-of-year component of a Date.')\r
+    @InvocableMethod(label='System.Date.dayOfYear()' category='Flowpex' iconName='slds:standard:date_input' description='Returns the day-of-year component of a Date.')\r
 \r
     global static List<Response> System_Date_dayOfYear (List<Request> requests) {\r
         List<Response> responses = new List<Response>();\r
index af9a139b6bf91e470c87c5b9ac262662ab04fd86..0fae0114285e2f152212ce22a94b65fc552b9d12 100644 (file)
@@ -5,7 +5,7 @@
 \r
 global class System_Date_daysBetween {\r
 \r
-    @InvocableMethod(label='System.Date.day()' category='Flowpex' iconName='slds:standard:number_input' description='Returns the number of days between two dates. If the first date occurs after the second date, the return value is negative.')\r
+    @InvocableMethod(label='System.Date.daysBetween()' category='Flowpex' iconName='slds:standard:number_input' description='Returns the number of days between two dates. If the first date occurs after the second date, the return value is negative.')\r
 \r
     global static List<Response> System_Date_daysBetween (List<Request> requests) {\r
         List<Response> responses = new List<Response>();\r