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))