mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 09:31:10 +00:00
docs: fix typo (#3439)
This commit is contained in:
parent
f71f9ca66b
commit
07f720f716
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@
|
||||||
//! Response
|
//! Response
|
||||||
//! ```
|
//! ```
|
||||||
//! The request _first_ gets processed by the middleware specified _last_ - `MiddlewareC`. It passes
|
//! The request _first_ gets processed by the middleware specified _last_ - `MiddlewareC`. It passes
|
||||||
//! the request (modified a modified one) to the next middleware - `MiddlewareB` - _or_ directly
|
//! the request (possibly a modified one) to the next middleware - `MiddlewareB` - _or_ directly
|
||||||
//! responds to the request (e.g. when the request was invalid or an error occurred). `MiddlewareB`
|
//! responds to the request (e.g. when the request was invalid or an error occurred). `MiddlewareB`
|
||||||
//! processes the request as well and passes it to `MiddlewareA`, which then passes it to the
|
//! processes the request as well and passes it to `MiddlewareA`, which then passes it to the
|
||||||
//! [`Service`]. In the [`Service`], the extractors will run first. They don't pass the request on,
|
//! [`Service`]. In the [`Service`], the extractors will run first. They don't pass the request on,
|
||||||
|
|
Loading…
Reference in a new issue