Skip to content

Commit

Permalink
Deny rustdoc::private_intra_doc_links lint
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Sep 25, 2022
1 parent 10ae296 commit 8c4aae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lax/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
//! for solving least square problem by SVD
//!

#![deny(rustdoc::broken_intra_doc_links)]
#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]

#[cfg(any(feature = "intel-mkl-system", feature = "intel-mkl-static"))]
extern crate intel_mkl_src as _src;
Expand Down
2 changes: 1 addition & 1 deletion ndarray-linalg/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
clippy::type_complexity,
clippy::ptr_arg
)]
#![deny(rustdoc::broken_intra_doc_links)]
#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]

#[macro_use]
extern crate ndarray;
Expand Down

0 comments on commit 8c4aae3

Please sign in to comment.