From 46461be83952f85881421a9aad086057bdf7c6c7 Mon Sep 17 00:00:00 2001 From: LeoniePhiline <22329650+LeoniePhiline@users.noreply.github.com> Date: Sat, 26 Nov 2022 22:07:07 +0100 Subject: [PATCH] fix(docs): Clarify nested outer fallbacks in CHANGELOG.md --- axum/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 077ddd928a..4a3ab2e03e 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); ```