Skip to content

Commit 33a4749

Browse files
authored
Small spelling fixes (#360)
Signed-off-by: Tihomir Surdilovic <[email protected]>
1 parent 99d3f21 commit 33a4749

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</p>
1010

1111
A specification that defines a vendor-neutral and declarative workflow language,
12-
targeting the serverless computing technology domain.
12+
targeting the Serverless computing technology domain.
1313

1414
Serverless Workflow is hosted by the [Cloud Native Computing Foundation (CNCF)](https://www.cncf.io/) and was approved as a
1515
Cloud Native Sandbox level project on July 14, 2020.

examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Provides Serverless Workflow language examples
1313
- [Applicant Request Decision (Data-based Switch + SubFlows)](#Applicant-Request-Decision-Example)
1414
- [Provision Orders (Error Handling)](#Provision-Orders-Example)
1515
- [Monitor Job for completion (Polling)](#Monitor-Job-Example)
16-
- [Send CloudEvent on Workflow Completion](#Send-CloudEvent-On-Workfow-Completion-Example)
16+
- [Send CloudEvent on Workflow Completion](#Send-CloudEvent-On-Workflow-Completion-Example)
1717
- [Monitor Patient Vital Signs (Event state)](#Monitor-Patient-Vital-Signs-Example)
1818
- [Finalize College Application (Event state)](#Finalize-College-Application-Example)
1919
- [Perform Customer Credit Check (Callback state)](#Perform-Customer-Credit-Check-Example)
@@ -655,7 +655,7 @@ period, the workflow transitions to the "HandleNoVisaDecision" state.
655655
"type": "operation",
656656
"actions": [
657657
{
658-
"subFlowRef": "handleNoVisaDecisionWorkfowId"
658+
"subFlowRef": "handleNoVisaDecisionWorkflowId"
659659
}
660660
],
661661
"end": true
@@ -704,7 +704,7 @@ states:
704704
- name: HandleNoVisaDecision
705705
type: operation
706706
actions:
707-
- subFlowRef: handleNoVisaDecisionWorkfowId
707+
- subFlowRef: handleNoVisaDecisionWorkflowId
708708
end: true
709709
```
710710

@@ -1305,7 +1305,7 @@ states:
13051305
</tr>
13061306
</table>
13071307

1308-
### Send CloudEvent On Workfow Completion Example
1308+
### Send CloudEvent On Workflow Completion Example
13091309

13101310
#### Description
13111311

schema/workflow.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"failOnValidationErrors": {
5757
"type": "boolean",
5858
"default": true,
59-
"description": "Determines if workfow execution should continue if there are validation errors"
59+
"description": "Determines if workflow execution should continue if there are validation errors"
6060
}
6161
},
6262
"additionalProperties": false,

specification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Abstract
44

55
A specification that defines a vendor-neutral and declarative workflow language,
6-
targeting the serverless computing technology domain.
6+
targeting the Serverless computing technology domain.
77

88
## Status of this document
99

@@ -106,7 +106,7 @@ This section describes some of the core Serverless Workflow concepts:
106106

107107
### Workflow Definition
108108

109-
A workflow definition is a single artefact written in the Serverless Workflow
109+
A workflow definition is a single artifact written in the Serverless Workflow
110110
language. It consists of the core [Workflow Definition Structure](#Workflow-Definition-Structure)
111111
and the [Workflow Model](#Workflow-Model) It defines a blueprint used by runtimes for its execution.
112112

@@ -164,7 +164,7 @@ logic, so does the workflow data:
164164
<img src="media/spec/workflowdataflow.png" height="400" alt="Serverless Workflow Data Flow"/>
165165
</p>
166166

167-
The initial [Workfow data input](#Workflow-data-input) is passed to the workflow starting state as its data input.
167+
The initial [Workflow data input](#Workflow-data-input) is passed to the workflow starting state as its data input.
168168
When a state finishes its execution, [its data output is passed as data input to the next state](#Information-passing-Between-States) that should be executed.
169169

170170
When workflow execution ends, the last executed workflow state's data output becomes the final [Workflow data output](#Workflow-data-output).
@@ -1023,7 +1023,7 @@ gRPC uses [Protocol Buffers](https://developers.google.com/protocol-buffers/docs
10231023
and the methods on those services that can be invoked.
10241024

10251025
Let's look at an example of invoking a service method using RPC. For this example let's say we have the following
1026-
gRP protocol buffer definition in a myuserservice.proto file:
1026+
gRPC protocol buffer definition in a myuserservice.proto file:
10271027

10281028
```text
10291029
service UserService {

0 commit comments

Comments
 (0)