Skip to content

Deny rustdoc::private_intra_doc_links lint #344

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lax/src/eigh.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Eigenvalue problem for symmetric/Hermite matricies
//! Eigenvalue problem for symmetric/Hermitian matricies
//!
//! LAPACK correspondance
//! ----------------------
Expand Down
2 changes: 1 addition & 1 deletion lax/src/eigh_generalized.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Compute generalized right eigenvalue and eigenvectors
//! Generalized eigenvalue problem for symmetric/Hermitian matrices
//!
//! LAPACK correspondance
//! ----------------------
Expand Down
8 changes: 3 additions & 5 deletions 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 All @@ -88,11 +88,11 @@ pub mod flags;
pub mod layout;

pub mod eig;
pub mod eigh;
pub mod eigh_generalized;

mod alloc;
mod cholesky;
mod eigh;
mod eigh_generalized;
mod least_squares;
mod opnorm;
mod qr;
Expand All @@ -105,8 +105,6 @@ mod triangular;
mod tridiagonal;

pub use self::cholesky::*;
pub use self::eigh::*;
pub use self::eigh_generalized::*;
pub use self::flags::*;
pub use self::least_squares::*;
pub use self::opnorm::*;
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