File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1
1
//! The `ByteStr` and `ByteString` types and trait implementations.
2
+ #![ allow( rustdoc:: broken_intra_doc_links) ]
3
+ // ^ `slice` has a broken doc link, and our `Deref` propagates that while ignoring the
4
+ // `allow(rustdoc::broken_intra_doc_links)` from there. See
5
+ // https://github.com/rust-lang/rust/issues/135108 .
2
6
3
7
use core:: borrow:: { Borrow , BorrowMut } ;
4
8
#[ unstable( feature = "bstr" , issue = "134915" ) ]
Original file line number Diff line number Diff line change 1
1
//! The `ByteStr` type and trait implementations.
2
+ #![ allow( rustdoc:: broken_intra_doc_links) ]
3
+ // ^ `slice` has a broken doc link, and our `Deref` propagates that while ignoring the
4
+ // `allow(rustdoc::broken_intra_doc_links)` from there. See
5
+ // https://github.com/rust-lang/rust/issues/135108 .
2
6
3
7
use crate :: borrow:: { Borrow , BorrowMut } ;
4
8
use crate :: cmp:: Ordering ;
You can’t perform that action at this time.
0 commit comments