Skip to content

Commit

Permalink
Merge pull request #251 from mikeee/docs
Browse files Browse the repository at this point in the history
docs: clarify and fix mistakes
  • Loading branch information
mikeee authored Dec 3, 2024
2 parents 2deed2b + 0c909c5 commit 5241ce6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions daprdocs/content/en/rust-sdk-docs/rust-client/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ let mut client = dapr::Client::<dapr::client::TonicClient>::connect(addr,
The Rust SDK allows you to interface with the
[Dapr building blocks]({{< ref building-blocks >}}).

### Service Invocation
### Service Invocation (gRPC)

To invoke a specific method on another service running with Dapr sidecar, the
Dapr client Go SDK provides two options:
Dapr client provides two options:

Invoke a service
Invoke a (gRPC) service

```rust
let response = client
Expand Down Expand Up @@ -101,7 +101,7 @@ For a full guide on state management, visit

### Publish Messages

To publish data onto a topic, the Dapr Go client provides a simple method:
To publish data onto a topic, the Dapr client provides a simple method:

```rust
let pubsub_name = "pubsub-name".to_string();
Expand Down

0 comments on commit 5241ce6

Please sign in to comment.