Skip to content

Commit 116732e

Browse files
authored
fixed typos (#172)
1 parent ff2b836 commit 116732e

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contribution Guidelines
22

3-
Thank you for your interest in Dapr go SDK!
3+
Thank you for your interest in Dapr Go SDK!
44

55
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution.
66

@@ -12,7 +12,7 @@ This project has adopted the Microsoft Open Source Code of Conduct. For more inf
1212

1313
Contributions come in many forms: submitting issues, writing code, participating in discussions and community calls.
1414

15-
This document provides the guidelines for how to contribute to the Dapr go SDK project.
15+
This document provides the guidelines for how to contribute to the Dapr Go SDK project.
1616

1717
## Issues
1818

@@ -23,7 +23,7 @@ This section describes the guidelines for submitting issues
2323
There are 4 types of issues:
2424

2525
- Issue/Bug: You've found a bug with the code, and want to report it, or create an issue to track the bug.
26-
- Issue/Discussion: You have something on your mind, which requires input form others in a discussion, before it eventually manifests as a proposal.
26+
- Issue/Discussion: You have something on your mind, which requires input from others in a discussion, before it eventually manifests as a proposal.
2727
- Issue/Proposal: Used for items that propose a new idea or functionality. This allows feedback from others before code is written.
2828
- Issue/Question: Use this issue type, if you need help or have a question.
2929

@@ -37,12 +37,12 @@ Before you file an issue, make sure you've checked the following:
3737
- 👍 up-vote
3838
- 👎 down-vote
3939
1. For proposals
40-
- Some changes to the Dapr go SDK may require changes to the API. In that case, the best place to discuss the potential feature is the main [Dapr repo](https://github.com/dapr/dapr).
40+
- Some changes to the Dapr Go SDK may require changes to the API. In that case, the best place to discuss the potential feature is the main [Dapr repo](https://github.com/dapr/dapr).
4141
- Other examples could include bindings, state stores or entirely new components.
4242

43-
## Contributing to Dapr go SDK
43+
## Contributing to Dapr Go SDK
4444

45-
This section describes the guidelines for contributing code/docs to Dapr go SDK.
45+
This section describes the guidelines for contributing code/docs to Dapr Go SDK.
4646

4747
### Pull Requests
4848

@@ -68,7 +68,7 @@ A good way to communicate before investing too much time is to create a "Work-in
6868
### Use of Third-party code
6969

7070
- All third-party code must be placed in the `vendor/` folder.
71-
- `vendor/` folder is managed by go modules which stores the source code of third-party go dependencies. - The `vendor/` folder should not be modified manually.
71+
- `vendor/` folder is managed by Go modules which stores the source code of third-party Go dependencies. - The `vendor/` folder should not be modified manually.
7272
- Third-party code must include licenses.
7373

7474
A non-exclusive list of code that must be places in `vendor/`:

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Client library to help you build Dapr application in Go. This client supports al
77
## Usage
88
> Assuming you already have [installed](https://golang.org/doc/install) Go
99
10-
Dapr Go client includes two packages: `client` (for invoking public Dapr APIs), and `service` (to create services that will be invoked by Dapr, this is sometimes refereed to as "callback").
10+
Dapr Go client includes two packages: `client` (for invoking public Dapr APIs), and `service` (to create services that will be invoked by Dapr, this is sometimes referred to as "callback").
1111

1212
### Creating client
1313

@@ -217,7 +217,7 @@ secret, err := client.GetSecret(ctx, "store-name", "secret-name", opt)
217217

218218
#### Authentication
219219

220-
By default, Dapr relies on the network boundary to limit access to its API. If however the target Dapr API is configured with token-based authentication, users can configure the go Dapr client with that token in two ways:
220+
By default, Dapr relies on the network boundary to limit access to its API. If however the target Dapr API is configured with token-based authentication, users can configure the Go Dapr client with that token in two ways:
221221

222222
##### Environment Variable
223223

@@ -242,7 +242,7 @@ func main() {
242242

243243
In addition to the client capabilities that allow you to call into the Dapr API, the Go SDK also provides `service` package to help you bootstrap Dapr callback services in either gRPC or HTTP. Instructions on how to use it are located [here](./service/Readme.md)
244244

245-
## Contributing to Dapr go client
245+
## Contributing to Dapr Go client
246246

247247
See the [Contribution Guide](./CONTRIBUTING.md) to get started with building and developing.
248248

example/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Dapr go client example
1+
# Dapr Go client example
22

33
The `example` folder contains a Dapr enabled `serving` app and a `client` app that uses this SDK to invoke Dapr API for state and events, The `serving` app is available as HTTP or gRPC. The `client` app can target either one of these for service to service and binding invocations.
44

5-
To run this example, start by first launching the service in ether HTTP or gRPC:
5+
To run this example, start by first launching the service in either HTTP or gRPC:
66

77
### HTTP
88

example/pubsub/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dapr PubSub Example with go-sdk
22

3-
This folder contains two go file that use the Go SDK to invoke the Dapr Pub/Sub API.
3+
This folder contains two Go files that use the Go SDK to invoke the Dapr Pub/Sub API.
44

55
## Diagram
66

@@ -38,5 +38,5 @@ dapr run --app-id pub \
3838
## Result
3939

4040
```shell
41-
== APP == 2020/08/23 13:21:58 event - PubsubName: messages, Topic: demo, ID: 11acaa82-23c4-4244-8969-7360dae52e5d, Data: ping
42-
```
41+
== APP == 2020/08/23 13:21:58 event - PubsubName: messages, Topic: neworder, ID: 11acaa82-23c4-4244-8969-7360dae52e5d, Data: ping
42+
```

service/Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Dapr Service (Callback) SDK for Go
22

3-
In addition to this Dapr API client, Dapr go SDK also provides `service` package to bootstrap your Dapr callback services. These services can be developed in either gRPC or HTTP:
3+
In addition to this Dapr API client, Dapr Go SDK also provides `service` package to bootstrap your Dapr callback services. These services can be developed in either gRPC or HTTP:
44

55
* [HTTP Service](./http/Readme.md)
66
* [gRPC Service](./grpc/Readme.md)
77

88
## Templates
99

10-
To accelerate your Dapr app development in go even further, we've craated a few GitHub templates which build on the above Dapr callback packages:
10+
To accelerate your Dapr app development in Go even further, we've created a few GitHub templates which build on the above Dapr callback packages:
1111

1212
* [Dapr gRPC Service in Go](https://github.com/dapr-templates/dapr-grpc-service-template) - Template project to jump start your Dapr event subscriber service with gRPC development
1313
* [Dapr HTTP Event Subscriber in Go](https://github.com/dapr-templates/dapr-http-event-subscriber-template) - Template project to jump start your Dapr event subscriber service with HTTP development

service/grpc/Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dapr gRPC Service SDK for Go
22

3-
Start by importing Dapr go `service/grpc` package:
3+
Start by importing Dapr Go `service/grpc` package:
44

55
```go
66
daprd "github.com/dapr/go-sdk/service/grpc"
@@ -107,12 +107,12 @@ func runHandler(ctx context.Context, in *common.BindingEvent) (out []byte, err e
107107

108108
## Templates
109109

110-
To accelerate your gRPC Dapr app development in go even further you can use one of the GitHub templates integrating the gRPC Dapr callback package:
110+
To accelerate your gRPC Dapr app development in Go even further you can use one of the GitHub templates integrating the gRPC Dapr callback package:
111111

112112
* [Dapr gRPC Service in Go](https://github.com/mchmarny/dapr-grpc-service-template) - Template project to jump start your Dapr event subscriber service with gRPC development
113113
* [Dapr gRPC Event Subscriber in Go](https://github.com/mchmarny/dapr-grpc-event-subscriber-template) - Template project to jump start your Dapr event subscriber service with gRPC development
114114

115115

116-
## Contributing to Dapr go client
116+
## Contributing to Dapr Go client
117117

118118
See the [Contribution Guide](../../CONTRIBUTING.md) to get started with building and developing.

service/http/Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dapr HTTP Service SDK for Go
22

3-
Start by importing Dapr go `service/http` package:
3+
Start by importing Dapr Go `service/http` package:
44

55
```go
66
daprd "github.com/dapr/go-sdk/service/http"
@@ -103,12 +103,12 @@ func runHandler(ctx context.Context, in *common.BindingEvent) (out []byte, err e
103103

104104
## Templates
105105

106-
To accelerate your HTTP Dapr app development in go even further you can use one of the GitHub templates integrating the HTTP Dapr callback package:
106+
To accelerate your HTTP Dapr app development in Go even further you can use one of the GitHub templates integrating the HTTP Dapr callback package:
107107

108108
* [Dapr HTTP Event Subscriber in Go](https://github.com/mchmarny/dapr-http-event-subscriber-template) - Template project to jump start your Dapr event subscriber service with HTTP development
109109
* [Dapr HTTP cron Handler in Go](https://github.com/mchmarny/dapr-http-cron-handler-template) - Template project to jump start your Dapr service development for scheduled workloads
110110

111111

112-
## Contributing to Dapr go client
112+
## Contributing to Dapr Go client
113113

114114
See the [Contribution Guide](../../CONTRIBUTING.md) to get started with building and developing.

0 commit comments

Comments
 (0)