We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01da72 commit 4e0abdbCopy full SHA for 4e0abdb
src/tools/linkchecker/main.rs
@@ -133,8 +133,11 @@ fn check(cache: &mut Cache,
133
// Unfortunately we're not 100% full of valid links today to we need a few
134
// whitelists to get this past `make check` today.
135
// FIXME(#32129)
136
- if file.ends_with("std/string/struct.String.html") ||
137
- file.ends_with("collections/string/struct.String.html") {
+ if file.ends_with("std/string/struct.String.html") {
+ return None;
138
+ }
139
+ // FIXME(#32553)
140
+ if file.ends_with("collections/string/struct.String.html") {
141
return None;
142
}
143
// FIXME(#32130)
0 commit comments