11Workflow
22========
33
4- Using the Workflow component inside a Symfony application requiresto know first
4+ Using the Workflow component inside a Symfony application requiresknowing first
55some basic theory and concepts about workflows and state machines.
66:doc: `Read this article </workflow/workflow-and-state-machine >` for a quick overview.
77
@@ -29,8 +29,8 @@ Creating a Workflow
2929-------------------
3030
3131A workflow is a process or a lifecycle that your objects go through. Each
32- step or stage in the process is called a *place *. Youdo also define *transitions *
33- to that describes the action to get from one place to another.
32+ step or stage in the process is called a *place *. You also define *transitions *,
33+ which describe the action needed to get from one place to another.
3434
3535..image ::/_images/components/workflow/states_transitions.png
3636
@@ -39,8 +39,8 @@ a ``Definition`` and a way to write the states to the objects (i.e. an
3939instance of a:class: `Symfony\\ Component\\ Workflow\\ MarkingStore\\ MarkingStoreInterface `.)
4040
4141Consider the following example for a blog post. A post can have these places:
42- ``draft ``, ``reviewed ``, ``rejected ``, ``published ``. Youcan define the workflow
43- like this :
42+ ``draft ``, ``reviewed ``, ``rejected ``, ``published ``. Youcould define the workflow as
43+ follows :
4444
4545..configuration-block ::
4646