1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 21:51:06 +01:00

Fix fist to first (#598)

Co-authored-by: yinqilei <yinqilei_ug@126.com>
This commit is contained in:
ahbkc 2024-09-05 08:55:49 +08:00 committed by GitHub
parent cfae737314
commit fad1fda194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,7 +52,7 @@ where
/// Call another service after call to this one has resolved successfully. /// Call another service after call to this one has resolved successfully.
/// ///
/// This function can be used to chain two services together and ensure that /// 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 /// finished. Result of the call to the first service is used as an
/// input parameter for the second service's call. /// input parameter for the second service's call.
/// ///