Skip to content

Commit b539a8c

Browse files
committed
Add bstr files to linkchecker since they have a Deref to slice
The Deref brings in the documentation from slice, so it has the same issue as slice.
1 parent 8727b9c commit b539a8c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/tools/linkchecker/main.rs

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
5050
("alloc/slice/trait.Concat.html", &["#method.concat"]),
5151
("alloc/slice/index.html", &["#method.concat", "#method.join"]),
5252
("alloc/vec/struct.Vec.html", &["#method.sort_by_key", "#method.sort_by_cached_key"]),
53+
("alloc/bstr/struct.ByteString.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase",
54+
"core/slice::sort_by_key", "core\\slice::sort_by_key",
55+
"#method.sort_by_cached_key"]),
56+
("core/bstr/struct.ByteStr.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase",
57+
"core/slice::sort_by_key", "core\\slice::sort_by_key",
58+
"#method.sort_by_cached_key"]),
5359
("core/primitive.str.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase"]),
5460
("core/primitive.slice.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase",
5561
"core/slice::sort_by_key", "core\\slice::sort_by_key",

0 commit comments

Comments
 (0)