diff options
| author | Ashley Mannix <kodraus@hey.com> | 2021-01-18 21:53:43 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-18 21:53:43 +1000 |
| commit | 33d184bfd093460d56a10c8a151b66147d2b4041 (patch) | |
| tree | b4cba5b1928482376b1a8275ad2f57d98d2c0d42 /src/tools | |
| parent | 0068358ba4dd3869936b60ef4044f4d65378d431 (diff) | |
| parent | d5570c2fcbfa29701b5cf2ddf9c49b2f85c2d742 (diff) | |
| download | rust-33d184bfd093460d56a10c8a151b66147d2b4041.tar.gz rust-33d184bfd093460d56a10c8a151b66147d2b4041.zip | |
Rollup merge of #81153 - jyn514:linkcheck, r=Manishearth
Remove unused linkcheck exceptions Found while working on https://github.com/deadlinks/cargo-deadlinks/issues/133. r? `@Manishearth`
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"]), |
