diff options
| author | 3w36zj6 <52315048+3w36zj6@users.noreply.github.com> | 2025-06-11 00:34:27 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-10 15:34:27 +0000 |
| commit | 5d13b35458c9e39b43d9943aaa79210141df39b3 (patch) | |
| tree | 876830b800ff467cd1fa8640a02689bea22966e7 | |
| parent | 44d410dd007569227e8eca41e39fde9a932f0d02 (diff) | |
Standardize trailing slashes in docs route paths (#6420)
| -rw-r--r-- | docs/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/lib.rs b/docs/src/lib.rs index 091bb1b2..d848c59b 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, |
