From df2160f2e494792117d1c156beb8f03cbf99cd18 Mon Sep 17 00:00:00 2001 From: Robert Nagy Date: Thu, 9 Jan 2020 10:45:47 +0000 Subject: [PATCH] Update workflow-and-state-machine.rst --- workflow/workflow-and-state-machine.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow/workflow-and-state-machine.rst b/workflow/workflow-and-state-machine.rst index 3bb774dfaef..f82a1f3c729 100644 --- a/workflow/workflow-and-state-machine.rst +++ b/workflow/workflow-and-state-machine.rst @@ -10,9 +10,9 @@ user submits a series of different forms to complete a task. Such processes are best kept away from your models and should be defined in configuration. A **definition** of a workflow consists of places and actions to get from one -place to another. The actions are called **transitions**. A workflow does also -need to know each object's position in the workflow. That **marking store** -writes to a property of the object to remember the current place. +place to another. The actions are called **transitions**. A workflow also needs to +know each object's position in the workflow. The **marking store** writes +the current place to a property on the object. .. note::