From b1cbacc7f641ba908dfe12ec9da5dbede1aadc90 Mon Sep 17 00:00:00 2001 From: ahbkc <34927942+ahbkc@users.noreply.github.com> Date: Tue, 3 Sep 2024 12:15:24 +0800 Subject: [PATCH] fix actix-service/src/ext.rs 'fist' to 'first' (#596) Co-authored-by: yinqilei --- actix-service/src/ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-service/src/ext.rs b/actix-service/src/ext.rs index f5fe6ed1..5cf612de 100644 --- a/actix-service/src/ext.rs +++ b/actix-service/src/ext.rs @@ -44,7 +44,7 @@ pub trait ServiceExt: Service { /// Call another service after call to this one has resolved successfully. /// /// This function can be used to chain two services together and ensure that the second service - /// isn't called until call to the fist service have finished. Result of the call to the first + /// isn't called until call to the first service have finished. Result of the call to the first /// service is used as an input parameter for the second service's call. /// /// Note that this function consumes the receiving service and returns a wrapped version of it.