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

Fixes typo. (#940)

Small typo fix.
This commit is contained in:
Cameron Dershem 2019-06-25 13:23:36 -04:00 committed by Nikolay Kim
parent b948f74b54
commit c0c71f82c0

View File

@ -27,7 +27,7 @@ type HttpNewService = BoxedNewService<(), ServiceRequest, ServiceResponse, Error
/// Resource in turn has at least one route. /// Resource in turn has at least one route.
/// Route consists of an handlers objects and list of guards /// Route consists of an handlers objects and list of guards
/// (objects that implement `Guard` trait). /// (objects that implement `Guard` trait).
/// Resources and rouets uses builder-like pattern for configuration. /// Resources and routes uses builder-like pattern for configuration.
/// During request handling, resource object iterate through all routes /// During request handling, resource object iterate through all routes
/// and check guards for specific route, if request matches all /// and check guards for specific route, if request matches all
/// guards, route considered matched and route handler get called. /// guards, route considered matched and route handler get called.