Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: clarify and fix mistakes #251

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading