From fad1fda194ae7f6f5ccfd464fb751fc319f813bc Mon Sep 17 00:00:00 2001 From: ahbkc <34927942+ahbkc@users.noreply.github.com> Date: Thu, 5 Sep 2024 08:55:49 +0800 Subject: [PATCH] Fix fist to first (#598) Co-authored-by: yinqilei --- actix-service/src/pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-service/src/pipeline.rs b/actix-service/src/pipeline.rs index 118f9797..4286e997 100644 --- a/actix-service/src/pipeline.rs +++ b/actix-service/src/pipeline.rs @@ -52,7 +52,7 @@ where /// 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 + /// the second service 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. ///