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.
This commit is contained in:
parent
fc34bea69d
commit
049217b65a
1 changed files with 23 additions and 0 deletions
|
@ -50,6 +50,29 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
|
|||
("alloc/slice/trait.Concat.html", &["#method.concat"]),
|
||||
("alloc/slice/index.html", &["#method.concat", "#method.join"]),
|
||||
("alloc/vec/struct.Vec.html", &["#method.sort_by_key", "#method.sort_by_cached_key"]),
|
||||
("alloc/bstr/struct.ByteStr.html", &[
|
||||
"#method.to_ascii_uppercase",
|
||||
"#method.to_ascii_lowercase",
|
||||
"core/slice::sort_by_key",
|
||||
"core\\slice::sort_by_key",
|
||||
"#method.sort_by_cached_key",
|
||||
"#method.sort_by_key"
|
||||
]),
|
||||
("alloc/bstr/struct.ByteString.html", &[
|
||||
"#method.to_ascii_uppercase",
|
||||
"#method.to_ascii_lowercase",
|
||||
"core/slice::sort_by_key",
|
||||
"core\\slice::sort_by_key",
|
||||
"#method.sort_by_cached_key",
|
||||
"#method.sort_by_key"
|
||||
]),
|
||||
("core/bstr/struct.ByteStr.html", &[
|
||||
"#method.to_ascii_uppercase",
|
||||
"#method.to_ascii_lowercase",
|
||||
"core/bstr/slice::sort_by_key",
|
||||
"core\\bstr\\slice::sort_by_key",
|
||||
"#method.sort_by_cached_key"
|
||||
]),
|
||||
("core/primitive.str.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase"]),
|
||||
("core/primitive.slice.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase",
|
||||
"core/slice::sort_by_key", "core\\slice::sort_by_key",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue