From c26dcd90b3f8b1124f35c8e7eef6c81476c2de09 Mon Sep 17 00:00:00 2001 From: Cyril Marpaud <9333398+cyril-marpaud@users.noreply.github.com> Date: Thu, 22 Jun 2023 23:34:38 +0200 Subject: [PATCH] Fix a typo in `axum::middleware` (#2056) Co-authored-by: David Pedersen --- axum/src/docs/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/middleware.md b/axum/src/docs/middleware.md index 70eda706..15bfffb7 100644 --- a/axum/src/docs/middleware.md +++ b/axum/src/docs/middleware.md @@ -125,7 +125,7 @@ That is: - It then does its thing and passes the request onto `layer_two` - Which passes the request onto `layer_one` - Which passes the request onto `handler` where a response is produced -- That response is then passes to `layer_one` +- That response is then passed to `layer_one` - Then to `layer_two` - And finally to `layer_three` where it's returned out of your app