Skip to content

Commit

Permalink
Update lints for rename of intra_doc_link_resolution_failure
Browse files Browse the repository at this point in the history
This lint was renamed to broken_intra_doc_links as part of feature
stabilization.

The lint was renamed in rust-lang/rust#74926
  • Loading branch information
lopopolo committed Aug 6, 2020
1 parent fb82937 commit de30fe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/rustdoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
toolchain: nightly
profile: minimal
override: true
components: rustfmt, rust-src

- name: Build Documentation
run: cargo doc
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ rewritten by Vladimir Makarov <[email protected]>. */
#![warn(clippy::cargo)]
#![allow(clippy::cast_lossless)]
#![allow(clippy::cast_possible_truncation)]
#![warn(missing_docs, intra_doc_link_resolution_failure)]
#![allow(unknown_lints)]
#![warn(missing_docs, broken_intra_doc_links)]
#![warn(missing_debug_implementations)]
#![warn(rust_2018_idioms)]
#![warn(unused_qualifications)]
Expand Down

0 comments on commit de30fe2

Please sign in to comment.