summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
author3w36zj6 <52315048+3w36zj6@users.noreply.github.com>2025-06-11 00:34:27 +0900
committerGitHub <noreply@github.com>2025-06-10 15:34:27 +0000
commit5d13b35458c9e39b43d9943aaa79210141df39b3 (patch)
tree876830b800ff467cd1fa8640a02689bea22966e7 /docs
parent44d410dd007569227e8eca41e39fde9a932f0d02 (diff)
Standardize trailing slashes in docs route paths (#6420)
Diffstat (limited to 'docs')
-rw-r--r--docs/src/lib.rs2
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,