mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 09:31:10 +00:00
Corrected a typo in mod.rs (#3218)
This commit is contained in:
parent
37d304b0f2
commit
0a312037ea
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@
|
|||
//! 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,
|
||||
//! but only view it (see [`FromRequest`]). After the [`Service`] responds to the request, the
|
||||
//! response it passed back through `MiddlewareA`, `MiddlewareB`, and `MiddlewareC`.
|
||||
//! response is passed back through `MiddlewareA`, `MiddlewareB`, and `MiddlewareC`.
|
||||
//!
|
||||
//! As you register middleware using [`wrap`][crate::App::wrap] and [`wrap_fn`][crate::App::wrap_fn]
|
||||
//! in the [`App`] builder, imagine wrapping layers around an inner [`App`]. The first middleware
|
||||
|
|
Loading…
Reference in a new issue