Skip to content

Commit c83d826

Browse files
committed
Typos and grammatical errors only
Signed-off-by: Bilgin Ibryam <[email protected]>
1 parent 61ebe15 commit c83d826

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

actors/csharp/sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Dapr Actors (Dapr SDK)
22

33
Let's take a look at the Dapr [Actors building block](https://docs.dapr.io/developing-applications/building-blocks/actors/actors-overview/). In this Quickstart, you will run a SmartDevice.Service microservice and a simple console client to demonstrate the stateful object patterns in Dapr Actors.
4-
1. Using a SmartDevice.Service microservice, developers can host two SmartDectectorActor smoke alarm objects, and a third ControllerActor object that command and controls the smart devices.
4+
1. Using a SmartDevice.Service microservice, developers can host two SmartDetectorActor smoke alarm objects, and a third ControllerActor object that command and controls the smart devices.
55
2. Using a SmartDevice.Client console app, developers have a client app to interact with each actor, or the controller to perform actions in aggregate.
66
3. The SmartDevice.Interfaces contains the shared interfaces and data types used by both service and client apps
77

@@ -18,7 +18,7 @@ For this example, you will need:
1818

1919
### Step 2: Set up the environment
2020

21-
Clone the [sample provided in the Quickstarts repo](https://github.com/dapr/quickstarts/tree/master/workflows).
21+
Clone the [sample provided in the Quickstarts repo](https://github.com/dapr/quickstarts/tree/master/actors).
2222

2323
```bash
2424
git clone https://github.com/dapr/quickstarts.git
@@ -122,7 +122,7 @@ name: Shutdown dapr
122122
-->
123123

124124
```bash
125-
dapr stop --app-id actorservice
125+
dapr stop --app-id actorservice
126126
(lsof -iTCP -sTCP:LISTEN -P | grep :5001) | awk '{print $2}' | xargs kill
127127
```
128128

bindings/csharp/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dapr Bindings (Dapr SDK)
22

3-
In this quickstart, you'll create a microservice to demonstrate Dapr's bindings API to work with external systems as inputs and outputs. The service listens to input binding events from a system CRON and then outputs the contents of local data to a PostreSql output binding.
3+
In this quickstart, you'll create a microservice to demonstrate Dapr's bindings API to work with external systems as inputs and outputs. The service listens to input binding events from a system CRON and then outputs the contents of local data to a PostgreSQL output binding.
44

55
Visit [this](https://docs.dapr.io/developing-applications/building-blocks/bindings/) link for more information about Dapr and Bindings.
66

pub_sub/go/sdk/order-processor/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func main() {
3333
// Start the server
3434
err = s.Start()
3535
if err != nil && err != http.ErrServerClosed {
36-
log.Fatalf("error listenning: %v", err)
36+
log.Fatalf("error listening: %v", err)
3737
}
3838
}
3939

tutorials/distributed-calculator/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This quickstart shows method invocation and state persistent capabilities of Dap
88
- **Subtraction**: [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/) application
99

1010
The front-end application consists of a server and a client written in [React](https://reactjs.org/).
11-
Kudos to `ahfarmer` whose [React calculator](https://github.com/ahfarmer/calculator)
11+
Kudos to `ahfarmer` whose [React calculator](https://github.com/ahfarmer/calculator) was used as a starting point for the frontend implementation.
1212

1313
The following architecture diagram illustrates the components that make up this quickstart:
1414

@@ -160,7 +160,7 @@ sleep: 2
160160
4. Multiply App - Open a terminal window and navigate to the python directory and follow the steps below:
161161

162162
<!-- STEP
163-
name: "Build ptyhon app"
163+
name: "Build python app"
164164
working_dir: "./python"
165165
-->
166166

@@ -227,7 +227,7 @@ expected_stdout_lines:
227227
- "Exited App successfully"
228228
expected_stderr_lines:
229229
output_match_mode: substring
230-
name: "Run frontent app"
230+
name: "Run frontend app"
231231
working_dir: "./react-calculator"
232232
background: true
233233
sleep: 15
@@ -393,7 +393,7 @@ kubectl apply -f .
393393
394394
Each of the services will spin up a pod with two containers: one for your service and one for the Dapr sidecar. It will also configure a service for each sidecar and an external IP for the front-end, which allows us to connect to it externally.
395395

396-
4. Kubernetes deployments are asyncronous. This means you'll need to wait for the deployment to complete before moving on to the next steps. You can do so with the following commands:
396+
4. Kubernetes deployments are asynchronous. This means you'll need to wait for the deployment to complete before moving on to the next steps. You can do so with the following commands:
397397

398398
<!-- STEP
399399
name: "Deploy Kubernetes"

tutorials/hello-world/python/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
message = {"data": {"orderId": n}}
2525

2626
try:
27-
response = requests.post(dapr_url, json=message, timeout=5, headers = {"dapr-app-id": "nodeapp"})
27+
response = requests.post(dapr_url, json=message, timeout=5, headers={"dapr-app-id": "nodeapp"})
2828
if not response.ok:
2929
print("HTTP %d => %s" % (response.status_code,
3030
response.content.decode("utf-8")), flush=True)

workflows/go/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The quickstart contains 1 workflow (OrderProcessingWorkflow) which simulates pur
1212
activities are as follows:
1313

1414
- NotifyActivity: This activity utilizes a logger to print out messages throughout the workflow. These messages notify the user when there is insufficient
15-
§inventory, their payment couldn't be processed, and more.
15+
inventory, their payment couldn't be processed, and more.
1616
- VerifyInventoryActivity: This activity checks the state store to ensure that there is enough inventory present for purchase.
1717
- RequestApprovalActivity: This activity seeks approval from a manager, if payment is greater than 5000 USD.
1818
- ProcessPaymentActivity: This activity is responsible for processing and authorizing the payment.

0 commit comments

Comments
 (0)