Skip to content

Commit 17e8292

Browse files
committed
Fix leftover rustdoc warnings
.. as these slipped in again.
1 parent e839d49 commit 17e8292

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lightning/src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@
4040
#![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), deny(missing_docs))]
4141
#![cfg_attr(not(any(test, feature = "_test_utils")), forbid(unsafe_code))]
4242

43-
// Prefix these with `rustdoc::` when we update our MSRV to be >= 1.52 to remove warnings.
44-
#![deny(broken_intra_doc_links)]
45-
#![deny(private_intra_doc_links)]
43+
#![deny(rustdoc::broken_intra_doc_links)]
44+
#![deny(rustdoc::private_intra_doc_links)]
4645

4746
// In general, rust is absolutely horrid at supporting users doing things like,
4847
// for example, compiling Rust code for real environments. Disable useless lints

0 commit comments

Comments
 (0)