From 06669056b53e00c53ff6d787e706c393a469eb78 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Mockers?= Date: Wed, 10 Mar 2021 18:18:56 +0100 Subject: [PATCH] remove slice linkcheck exceptions --- src/tools/linkchecker/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index 01e067ea0b8..f6875e0036f 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -33,11 +33,6 @@ // are cases where that does not work // [(generated_documentation_page, &[broken_links])] const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[ - // These are methods on slice, and `Self` does not work on primitive impls - // 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"]), // 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"]), -- 2.44.0