From 28f1996f9c0fde909ad1d3192c97e764320d676d Mon Sep 17 00:00:00 2001 From: LeoniePhiline <22329650+LeoniePhiline@users.noreply.github.com> Date: Sun, 27 Nov 2022 01:03:13 +0100 Subject: [PATCH] Clarify nested outer fallbacks in CHANGELOG.md (#1581) --- axum/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 077ddd92..4a3ab2e0 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 // this would panic in 0.5 but in 0.6 it just works // // requests starting with `/api` but not handled by `api_router` - // will go to `/api_fallback` + // will go to `api_fallback` .nest("/api", api_router); ``` @@ -37,7 +37,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 let app = Router::new() .nest("/api", api_router) - // `api_fallback` will inherit this fallback + // `api_router` will inherit this fallback .fallback(app_fallback); ```