Skip to content

Commit

Permalink
docs: fix typo (#3439)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git authored Jul 21, 2024
1 parent f71f9ca commit 07f720f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actix-web/src/middleware/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
//! Response
//! ```
//! 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`
//! 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,
Expand Down

0 comments on commit 07f720f

Please sign in to comment.