diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2021-01-17 22:19:03 -0500 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2021-01-17 22:36:39 -0500 |
| commit | d5570c2fcbfa29701b5cf2ddf9c49b2f85c2d742 (patch) | |
| tree | 277056ca8dc92f93d138f29ce418ae7333050190 /src/tools | |
| parent | 1f0fc02cc8ab4e0d9dd3e06a6d46fcb72b2a026f (diff) | |
| download | rust-d5570c2fcbfa29701b5cf2ddf9c49b2f85c2d742.tar.gz rust-d5570c2fcbfa29701b5cf2ddf9c49b2f85c2d742.zip | |
Remove unused linkcheck exceptions
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/linkchecker/main.rs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index dcfe1bb803f..1ab3aead966 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -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"]), |
