Skip to content

Commit f3cb380

Browse files
committed
Add allow(rustdoc::broken_intra_doc_links) to work around #135108
1 parent 238f7e6 commit f3cb380

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

library/alloc/src/bstr.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
//! 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 .
26

37
use core::borrow::{Borrow, BorrowMut};
48
#[unstable(feature = "bstr", issue = "134915")]

library/core/src/bstr.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
//! 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 .
26

37
use crate::borrow::{Borrow, BorrowMut};
48
use crate::cmp::Ordering;

0 commit comments

Comments
 (0)