From e16a4ca57c65418d6d1b74acd96247eec3e50389 Mon Sep 17 00:00:00 2001 From: Marc Duiker Date: Tue, 20 May 2025 07:49:23 +0200 Subject: [PATCH] Update tutorials/workflow/python/fundamentals/basic/basic_workflow.py Co-authored-by: Alice Gibbons Signed-off-by: Marc Duiker --- tutorials/workflow/python/fundamentals/basic/basic_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/workflow/python/fundamentals/basic/basic_workflow.py b/tutorials/workflow/python/fundamentals/basic/basic_workflow.py index 8ceb4f8e..7a618fcb 100644 --- a/tutorials/workflow/python/fundamentals/basic/basic_workflow.py +++ b/tutorials/workflow/python/fundamentals/basic/basic_workflow.py @@ -4,7 +4,7 @@ import dapr.ext.workflow as wf wf_runtime = wf.WorkflowRuntime() """ -Workflows orchestrate activities and other (child)workflows, and include business logic (if/else or switch statements). +Workflows orchestrate activities and other (child) workflows, and include business logic (if/else or switch statements). Workflow code must be be deterministic. Any non-deterministic behavior should be written inside activities. Workflow definitions use the `workflow` decorator to define a workflow.