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 8292d10 commit 05176b0
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 @@ -12,7 +12,8 @@
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![deny(clippy::cargo)]
#![deny(missing_docs, intra_doc_link_resolution_failure)]
#![allow(unknown_lints)]
#![warn(missing_docs, broken_intra_doc_links)]
#![deny(missing_debug_implementations)]
#![warn(rust_2018_idioms)]
#![warn(trivial_casts, trivial_numeric_casts)]
Expand Down

0 comments on commit 05176b0

Please sign in to comment.