chore: fix some spelling mistakes in the readme (#255)

Signed-off-by: Josh Dando <joshdando@Joshs-MacBook-Pro.local>

Co-authored-by: Josh Dando <joshdando@Joshs-MacBook-Pro.local>
This commit is contained in:
Josh 2022-02-05 20:38:49 +00:00 committed by GitHub
parent 8cc42bd7e3
commit 4298f3fa7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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" }
@ -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{