From 80a362712ff154fc8c8b661bcb67974f189852ee Mon Sep 17 00:00:00 2001 From: Riley Date: Sat, 25 Sep 2021 19:30:11 -0500 Subject: [PATCH] Fix Service request documentation (#388) --- actix-service/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-service/src/lib.rs b/actix-service/src/lib.rs index e26d5c62..12de9f66 100644 --- a/actix-service/src/lib.rs +++ b/actix-service/src/lib.rs @@ -77,7 +77,7 @@ use self::ready::{err, ok, ready, Ready}; /// /// fn poll_ready(&self, cx: &mut Context<'_>) -> Poll> { ... } /// -/// fn call(&self, req: Self::Request) -> Self::Future { ... } +/// fn call(&self, req: u8) -> Self::Future { ... } /// } /// ``` ///