Use new broken_intra_doc_links lint name

MSRV is now past 1.48.0.
This commit is contained in:
Jack Grigg 2021-05-14 20:45:20 +01:00
parent ee68e17487
commit dfd472006a
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
#![forbid(unsafe_code)]
// Catch documentation errors caused by code changes.
#![deny(intra_doc_link_resolution_failure)]
#![deny(broken_intra_doc_links)]
pub mod format;
pub mod primitives;

View file

@ -162,7 +162,7 @@
#![forbid(unsafe_code)]
// Catch documentation errors caused by code changes.
#![deny(intra_doc_link_resolution_failure)]
#![deny(broken_intra_doc_links)]
#![deny(missing_docs)]
use bech32::Variant;

View file

@ -135,7 +135,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code)]
// Catch documentation errors caused by code changes.
#![deny(intra_doc_link_resolution_failure)]
#![deny(broken_intra_doc_links)]
#![deny(missing_docs)]
mod error;