You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dapr/src/server/actor/runtime/mod.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -102,9 +102,9 @@ impl ActorTypeRegistration {
102
102
/// # Arguments:
103
103
/// * `method_name` - The name of the method to be registered. This name will be used by actor clients to invoke the method.
104
104
/// * `handler` - The handler function to be invoked when the method is called.
105
-
/// Can be any valid [Axum handler](https://docs.rs/axum/latest/axum/handler/index.html),
106
-
/// use [Axum extractors](https://docs.rs/axum/latest/axum/extract/index.html) to access the incoming request and return an [`impl IntoResponse`](https://docs.rs/axum/latest/axum/response/trait.IntoResponse.html).
107
-
/// Use the `DaprJson` extractor to deserialize the request from Json coming from a Dapr sidecar.
105
+
/// Can be any valid [Axum handler](https://docs.rs/axum/latest/axum/handler/index.html),
106
+
/// use [Axum extractors](https://docs.rs/axum/latest/axum/extract/index.html) to access the incoming request and return an [`impl IntoResponse`](https://docs.rs/axum/latest/axum/response/trait.IntoResponse.html).
107
+
/// Use the `DaprJson` extractor to deserialize the request from Json coming from a Dapr sidecar.
0 commit comments