@@ -213,7 +213,7 @@ unchanged throughout its execution.
213
213
214
214
Workflow instances can be started providing some data input. This is described in detail in the
215
215
[ 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
217
217
where a workflow definition contains a [ EventState] ( #Event-State ) starting workflow state.
218
218
219
219
The 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:
1640
1640
"name": "simpleadd",
1641
1641
"functions": [
1642
1642
{
1643
- "name": "Iicrement -count-function",
1643
+ "name": "increment -count-function",
1644
1644
"type": "expression",
1645
1645
"operation": ".count += 1 | .count"
1646
1646
}
@@ -5084,9 +5084,9 @@ before the workflow execution is stopped, and continued as a new workflow instan
5084
5084
{
5085
5085
"eventRef": "provisioning-complete-event",
5086
5086
"data": "${ .provisionedOrders }",
5087
- "contextAttributes": [ {
5087
+ "contextAttributes": {
5088
5088
"buyerId": "${ .buyerId }"
5089
- }]
5089
+ }
5090
5090
}
5091
5091
` ` `
5092
5092
@@ -5097,7 +5097,7 @@ before the workflow execution is stopped, and continued as a new workflow instan
5097
5097
eventRef: provisioning-complete-event
5098
5098
data: "${ .provisionedOrders }"
5099
5099
contextAttributes:
5100
- - buyerId: "${ .buyerId }"
5100
+ buyerId: "${ .buyerId }"
5101
5101
` ` `
5102
5102
5103
5103
</td>
@@ -6404,7 +6404,7 @@ You can define extensions in your workflow definition using its top-level `exten
6404
6404
For more information about this property, see the `extensions` property in the
6405
6405
[Workflow Definition Structure section](#Workflow-Definition-Structure).
6406
6406
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.
6408
6408
We also encourage users to contribute their extensions to the specification. That way they can be shared
6409
6409
with the rest of the community.
6410
6410
0 commit comments