Skip to content

Commit 5774b0e

Browse files
committed
Fix typos.
Signed-off-by: Elan Hasson <[email protected]>
1 parent 68d7472 commit 5774b0e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

specification.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ unchanged throughout its execution.
213213

214214
Workflow 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
217217
where a workflow definition contains a [EventState](#Event-State) starting workflow state.
218218

219219
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:
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
50975097
eventRef: provisioning-complete-event
50985098
data: "${ .provisionedOrders }"
50995099
contextAttributes:
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
64046404
For 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.
64086408
We also encourage users to contribute their extensions to the specification. That way they can be shared
64096409
with the rest of the community.
64106410

0 commit comments

Comments
 (0)