From b5b0c0e491b58bc4f37e06d08b3711a9038eb5e0 Mon Sep 17 00:00:00 2001 From: John Teske Date: Tue, 23 Nov 2021 22:57:29 -0800 Subject: [PATCH] Update routing layer documentation (#560) --- axum/src/docs/routing/layer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/routing/layer.md b/axum/src/docs/routing/layer.md index 35175c7d..af316b21 100644 --- a/axum/src/docs/routing/layer.md +++ b/axum/src/docs/routing/layer.md @@ -27,7 +27,7 @@ async fn second_handler() {} async fn third_handler() {} -// All requests to `handler` and `other_handler` will be sent through +// All requests to `first_handler` and `second_handler` will be sent through // `ConcurrencyLimit` let app = Router::new().route("/", get(first_handler)) .route("/foo", get(second_handler))