Skip to content

Commit 0de1780

Browse files
committed
Warn on rustdoc::unescaped_backticks for core and alloc
Signed-off-by: Miguel Ojeda <[email protected]>
1 parent e066120 commit 0de1780

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

library/alloc/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
#![warn(multiple_supertrait_upcastable)]
8787
#![allow(internal_features)]
8888
#![allow(rustdoc::redundant_explicit_links)]
89+
#![warn(rustdoc::unescaped_backticks)]
8990
#![deny(ffi_unwind_calls)]
9091
//
9192
// Library features:

library/core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
#![deny(ffi_unwind_calls)]
104104
// Do not check link redundancy on bootstraping phase
105105
#![allow(rustdoc::redundant_explicit_links)]
106+
#![warn(rustdoc::unescaped_backticks)]
106107
//
107108
// Library features:
108109
// tidy-alphabetical-start

0 commit comments

Comments
 (0)