Skip to content

Commit 33d184b

Browse files
authored
Rollup merge of #81153 - jyn514:linkcheck, r=Manishearth
Remove unused linkcheck exceptions Found while working on deadlinks/cargo-deadlinks#133. r? `@Manishearth`
2 parents 0068358 + d5570c2 commit 33d184b

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/tools/linkchecker/main.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,7 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
3737
// in intra-doc links (primitive impls are weird)
3838
// https://github.com/rust-lang/rust/issues/62834 is necessary to be
3939
// able to link to slices
40-
(
41-
"std/io/struct.IoSlice.html",
42-
&[
43-
"#method.as_mut_ptr",
44-
"#method.sort_by_key",
45-
"#method.make_ascii_uppercase",
46-
"#method.make_ascii_lowercase",
47-
"#method.get_unchecked_mut",
48-
],
49-
),
40+
("std/io/struct.IoSlice.html", &["#method.as_mut_ptr", "#method.sort_by_key"]),
5041
// These try to link to std::collections, but are defined in alloc
5142
// https://github.com/rust-lang/rust/issues/74481
5243
("std/collections/btree_map/struct.BTreeMap.html", &["#insert-and-complex-keys"]),

0 commit comments

Comments
 (0)