Skip to content

Commit 0cac975

Browse files
committed
fix lint error
1 parent db8af89 commit 0cac975

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#![allow(unknown_lints)] // remove once broken_intra_doc_links is on stable
2-
#![deny(missing_docs, broken_intra_doc_links)]
1+
#![allow(unknown_lints, renamed_and_removed_lints)]
2+
#![deny(missing_docs, broken_intra_doc_links)] // This will be weird until 1.52, see https://github.com/rust-lang/rust/pull/80527
3+
#![cfg_attr(nightly, deny(rustdoc::broken_intra_doc_links))]
34
#![cfg_attr(nightly, feature(doc_cfg, doc_spotlight))]
45
#![doc(html_root_url = "https://docs.rs/twitch_api2/0.4.1")]
56
#![cfg_attr(all(nightly, doctest), feature(external_doc))]

0 commit comments

Comments
 (0)