@@ -213,7 +213,7 @@ unchanged throughout its execution.
213213
214214Workflow instances can be started providing some data input. This is described in detail in the
215215[ workflow data input] ( #Workflow-Data-Input ) section.
216- Workflow instances can also wait for examples to start their execution, which is the case
216+ Workflow instances can also wait for events to start their execution, which is the case
217217where a workflow definition contains a [ EventState] ( #Event-State ) starting workflow state.
218218
219219The workflow definition also explicitly defines when a workflow instance should be completed.
@@ -1640,7 +1640,7 @@ Let's say we have the following workflow definition:
16401640 "name": "simpleadd",
16411641 "functions": [
16421642 {
1643- "name": "Iicrement -count-function",
1643+ "name": "increment -count-function",
16441644 "type": "expression",
16451645 "operation": ".count += 1 | .count"
16461646 }
@@ -5084,9 +5084,9 @@ before the workflow execution is stopped, and continued as a new workflow instan
50845084{
50855085 "eventRef": "provisioning-complete-event",
50865086 "data": "${ .provisionedOrders }",
5087- "contextAttributes": [ {
5087+ "contextAttributes": {
50885088 "buyerId": "${ .buyerId }"
5089- }]
5089+ }
50905090 }
50915091` ` `
50925092
@@ -5097,7 +5097,7 @@ before the workflow execution is stopped, and continued as a new workflow instan
50975097eventRef: provisioning-complete-event
50985098data: "${ .provisionedOrders }"
50995099contextAttributes:
5100- - buyerId: "${ .buyerId }"
5100+ buyerId: "${ .buyerId }"
51015101` ` `
51025102
51035103</td>
@@ -6404,7 +6404,7 @@ You can define extensions in your workflow definition using its top-level `exten
64046404For more information about this property, see the `extensions` property in the
64056405[Workflow Definition Structure section](#Workflow-Definition-Structure).
64066406
6407- Even tho users can define their own extensions, it is encouraged to use the ones provided by the specification.
6407+ Even though users can define their own extensions, it is encouraged to use the ones provided by the specification.
64086408We also encourage users to contribute their extensions to the specification. That way they can be shared
64096409with the rest of the community.
64106410
0 commit comments