Skip to content

Commit 4e0abdb

Browse files
committed
Add FIXME for linkchecker whitlists
1 parent b01da72 commit 4e0abdb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/tools/linkchecker/main.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,11 @@ fn check(cache: &mut Cache,
133133
// Unfortunately we're not 100% full of valid links today to we need a few
134134
// whitelists to get this past `make check` today.
135135
// FIXME(#32129)
136-
if file.ends_with("std/string/struct.String.html") ||
137-
file.ends_with("collections/string/struct.String.html") {
136+
if file.ends_with("std/string/struct.String.html") {
137+
return None;
138+
}
139+
// FIXME(#32553)
140+
if file.ends_with("collections/string/struct.String.html") {
138141
return None;
139142
}
140143
// FIXME(#32130)

0 commit comments

Comments
 (0)