Skip to content

Commit

Permalink
Rollup merge of rust-lang#81153 - jyn514:linkcheck, r=Manishearth
Browse files Browse the repository at this point in the history
Remove unused linkcheck exceptions

Found while working on deadlinks/cargo-deadlinks#133.

r? `@Manishearth`
  • Loading branch information
KodrAus committed Jan 18, 2021
2 parents 0068358 + d5570c2 commit 33d184b
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/tools/linkchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,7 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
// in intra-doc links (primitive impls are weird)
// https://github.com/rust-lang/rust/issues/62834 is necessary to be
// able to link to slices
(
"std/io/struct.IoSlice.html",
&[
"#method.as_mut_ptr",
"#method.sort_by_key",
"#method.make_ascii_uppercase",
"#method.make_ascii_lowercase",
"#method.get_unchecked_mut",
],
),
("std/io/struct.IoSlice.html", &["#method.as_mut_ptr", "#method.sort_by_key"]),
// These try to link to std::collections, but are defined in alloc
// https://github.com/rust-lang/rust/issues/74481
("std/collections/btree_map/struct.BTreeMap.html", &["#insert-and-complex-keys"]),
Expand Down

0 comments on commit 33d184b

Please sign in to comment.