mirror of https://github.com/fafhrd91/actix-web
docs: fix whitespace
This commit is contained in:
parent
70a7285ab7
commit
bc89526230
|
@ -29,8 +29,8 @@ use crate::{
|
||||||
/// Resource in turn has at least one route. Route consists of an handlers objects and list of
|
/// Resource in turn has at least one route. Route consists of an handlers objects and list of
|
||||||
/// guards (objects that implement `Guard` trait). Resources and routes uses builder-like pattern
|
/// guards (objects that implement `Guard` trait). Resources and routes uses builder-like pattern
|
||||||
/// for configuration. During request handling, the resource object iterates through all routes
|
/// for configuration. During request handling, the resource object iterates through all routes
|
||||||
/// and checks guards for the specific route, if the request matches all the guards, then the
|
/// and checks guards for the specific route, if the request matches all the guards, then the route
|
||||||
/// route is considered matched and the route handler gets called.
|
/// is considered matched and the route handler gets called.
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Reference in New Issue