@@ -46,6 +46,8 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
46
46
// The docs in std::primitive use proper intra-doc links, so these seem fine to special-case.
47
47
// Most these are broken because liballoc uses `#[lang_item]` magic to define things on
48
48
// primitives that aren't available in core.
49
+ ( "alloc/ffi/c_str/struct.CString.html" , & [ "#method.sort_by_key" ] ) ,
50
+ ( "alloc/ffi/struct.CString.html" , & [ "#method.sort_by_key" ] ) ,
49
51
( "alloc/slice/trait.Join.html" , & [ "#method.join" ] ) ,
50
52
( "alloc/slice/trait.Concat.html" , & [ "#method.concat" ] ) ,
51
53
( "alloc/slice/index.html" , & [ "#method.concat" , "#method.join" ] ) ,
@@ -73,6 +75,16 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
73
75
"core\\ bstr\\ slice::sort_by_key" ,
74
76
"#method.sort_by_cached_key"
75
77
] ) ,
78
+ ( "core/ffi/c_str/struct.CStr.html" , & [
79
+ "#method.to_ascii_uppercase" ,
80
+ "#method.to_ascii_lowercase" ,
81
+ "core/ffi/c_str/slice::sort_by_key" ,
82
+ ] ) ,
83
+ ( "core/ffi/struct.CStr.html" , & [
84
+ "#method.to_ascii_uppercase" ,
85
+ "#method.to_ascii_lowercase" ,
86
+ "core/ffi/slice::sort_by_key" ,
87
+ ] ) ,
76
88
( "core/primitive.str.html" , & [ "#method.to_ascii_uppercase" , "#method.to_ascii_lowercase" ] ) ,
77
89
( "core/primitive.slice.html" , & [ "#method.to_ascii_uppercase" , "#method.to_ascii_lowercase" ,
78
90
"core/slice::sort_by_key" , "core\\ slice::sort_by_key" ,
0 commit comments