Skip to content

Commit

Permalink
chore: fix some spelling mistakes in the readme (dapr#255)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dando <[email protected]>

Co-authored-by: Josh Dando <[email protected]>
  • Loading branch information
Joshswooft and Josh Dando authored Feb 5, 2022
1 parent 8cc42bd commit 4298f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ resp, err = client.InvokeMethodWithContent(ctx, "app-id", "method-name", "post",

Similarly to Service, Dapr client provides two methods to invoke an operation on a [Dapr-defined binding](https://docs.dapr.io/developing-applications/building-blocks/bindings/). Dapr supports input, output, and bidirectional bindings.

For simple, output only biding:
For simple, output only binding:

```go
in := &dapr.InvokeBindingRequest{ Name: "binding-name", Operation: "operation-name" }
Expand All @@ -204,7 +204,7 @@ out, err := client.InvokeBinding(ctx, in)

##### Secrets

The Dapr client also provides access to the runtime secrets that can be backed by any number of secrete stores (e.g. Kubernetes Secrets, HashiCorp Vault, or Azure KeyVault):
The Dapr client also provides access to the runtime secrets that can be backed by any number of secret stores (e.g. Kubernetes Secrets, HashiCorp Vault, or Azure KeyVault):

```go
opt := map[string]string{
Expand Down

0 comments on commit 4298f3f

Please sign in to comment.