From 5d13b35458c9e39b43d9943aaa79210141df39b3 Mon Sep 17 00:00:00 2001 From: 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> Date: Wed, 11 Jun 2025 00:34:27 +0900 Subject: [PATCH] Standardize trailing slashes in docs route paths (#6420) --- docs/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/lib.rs b/docs/src/lib.rs index 091bb1b24..d848c59bd 100644 --- a/docs/src/lib.rs +++ b/docs/src/lib.rs @@ -622,7 +622,7 @@ fn group_page( }); let model = PageModel { - route: eco_format!("{parent}{}", group.name), + route: eco_format!("{parent}{}/", group.name), title: group.title.clone(), description: eco_format!("Documentation for the {} functions.", group.name), part: None,