From c4339f21f002118bcc9c4086000d8732a92df7fa Mon Sep 17 00:00:00 2001 From: Andrzej Ludwikowski Date: Wed, 1 Nov 2023 07:02:13 +0100 Subject: [PATCH] chore: improving workflow docs --- docs/src/modules/java/pages/workflows.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/modules/java/pages/workflows.adoc b/docs/src/modules/java/pages/workflows.adoc index fe8f2e4d09..982e995646 100644 --- a/docs/src/modules/java/pages/workflows.adoc +++ b/docs/src/modules/java/pages/workflows.adoc @@ -4,7 +4,7 @@ include::ROOT:partial$include.adoc[] -Workflows make it possible to implement long-running, multi-step business processes while focusing exclusively on domain and business logic. Workflows combine the power of https://docs.kalix.io/reference/glossary.html#entity[Entities] and https://docs.kalix.io/reference/glossary.html#action[Actions], providing durability, consistency and the ability to call other components and services. Business transactions can be modeled in one central place, and the Workflow will keep them running smoothly, or roll back if something goes wrong. +Workflows make it possible to implement long-running, multi-step business processes while focusing exclusively on domain and business logic. Workflows provide durability, consistency and the ability to call other components and services. Business transactions can be modeled in one central place, and the Workflow will keep them running smoothly, or roll back if something goes wrong. == Identifying the Workflow