Docs: Fix signature of Service::call

This commit is contained in:
Danilo Bargen 2021-06-02 21:12:44 +02:00
parent 983abec77d
commit 40cb76feb3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ where
///
/// actix_service::forward_ready!(service);
///
/// fn call(&self, req: S::Request) -> Self::Future {
/// fn call(&self, req: Req) -> Self::Future {
/// TimeoutServiceResponse {
/// fut: self.service.call(req),
/// sleep: Sleep::new(clock::now() + self.timeout),