From d443bcea9f4c2e8110e881b0fa35f584293808b4 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Mon, 1 Apr 2024 21:56:14 +0200 Subject: [PATCH] Update activity description in PrintMessage class The activity description for the PrintMessage class has been updated. Previously, the description was 'Print Message', it has now been changed to 'Print a message to the console' to provide a more explicit understanding of the function's purpose. --- .../custom-activities/PrintMessageWithActivityMetadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writerside/snippets/extensibility/custom-activities/PrintMessageWithActivityMetadata.cs b/writerside/snippets/extensibility/custom-activities/PrintMessageWithActivityMetadata.cs index 245a9d6..a320f1d 100644 --- a/writerside/snippets/extensibility/custom-activities/PrintMessageWithActivityMetadata.cs +++ b/writerside/snippets/extensibility/custom-activities/PrintMessageWithActivityMetadata.cs @@ -1,7 +1,7 @@ using Elsa.Workflows; using Elsa.Workflows.Attributes; -[Activity("MyCompany", "Print Message")] +[Activity("MyCompany", "Print a message to the console")] public class PrintMessage : CodeActivity { protected override void Execute(ActivityExecutionContext context)