From 0c909c544be17041897ced21c0ea9d0e981bb6f8 Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Tue, 3 Dec 2024 10:14:04 +0000 Subject: [PATCH] docs: clarify and fix mistakes Signed-off-by: Mike Nguyen --- daprdocs/content/en/rust-sdk-docs/rust-client/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/daprdocs/content/en/rust-sdk-docs/rust-client/_index.md b/daprdocs/content/en/rust-sdk-docs/rust-client/_index.md index 0c95ad9..2d34e51 100644 --- a/daprdocs/content/en/rust-sdk-docs/rust-client/_index.md +++ b/daprdocs/content/en/rust-sdk-docs/rust-client/_index.md @@ -51,12 +51,12 @@ let mut client = dapr::Client::::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 @@ -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();