Skip to content

Commit 1c6501e

Browse files
authored
Merge pull request #1983 from rust-lang/remo/kqmlrwkpswxv
Fix broken redirects
2 parents 47ae038 + 139b347 commit 1c6501e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/redirect.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ static PAGE_REDIRECTS: &[(&str, &str)] = &[
99
("community.html", "community"),
1010
("conduct.html", "policies/code-of-conduct"),
1111
("contribute-bugs.html", "community"),
12-
("contribute-community.html", "governance/teams/community"),
12+
("contribute-community.html", "community"),
1313
("contribute-compiler.html", "governance/teams/compiler"),
14-
("contribute-docs.html", "governance/teams/documentation"),
14+
(
15+
"contribute-docs.html",
16+
"governance/teams/dev-tools#team-rustdoc",
17+
),
1518
("contribute-libs.html", "governance/teams/library"),
1619
("contribute-tools.html", "governance/teams/dev-tools"),
1720
("contribute.html", "community"),

0 commit comments

Comments
 (0)