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

fix actix-service/src/ext.rs 'fist' to 'first' (#596)

Co-authored-by: yinqilei <yinqilei_ug@126.com>
This commit is contained in:
ahbkc 2024-09-03 12:15:24 +08:00 committed by GitHub
parent 77588aba81
commit b1cbacc7f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ pub trait ServiceExt<Req>: Service<Req> {
/// 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 the second service /// 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. /// 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. /// Note that this function consumes the receiving service and returns a wrapped version of it.