Skip to content

Commit 54b22f9

Browse files
Docs: Fix signature of Service::call (#358)
1 parent 983abec commit 54b22f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actix-service/src/transform.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ where
4141
///
4242
/// actix_service::forward_ready!(service);
4343
///
44-
/// fn call(&self, req: S::Request) -> Self::Future {
44+
/// fn call(&self, req: Req) -> Self::Future {
4545
/// TimeoutServiceResponse {
4646
/// fut: self.service.call(req),
4747
/// sleep: Sleep::new(clock::now() + self.timeout),

0 commit comments

Comments
 (0)