Skip to content

Commit eae6a95

Browse files
committed
fix(docs): over indented docs (#274)
Signed-off-by: Mike Nguyen <hey@mike.ee>
1 parent 1d5b63c commit eae6a95

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • dapr/src/server/actor/runtime

dapr/src/server/actor/runtime/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ impl ActorTypeRegistration {
102102
/// # Arguments:
103103
/// * `method_name` - The name of the method to be registered. This name will be used by actor clients to invoke the method.
104104
/// * `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.
108108
/// # Example:
109109
/// ```ignore
110110
/// # use std::sync::Arc;

0 commit comments

Comments
 (0)