Skip to content

Commit 0b133cf

Browse files
authored
Merge pull request #344 from rust-ndarray/deny-private-intra-doc-links
Deny `rustdoc::private_intra_doc_links` lint
2 parents 10ae296 + 28be9bb commit 0b133cf

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

lax/src/eigh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Eigenvalue problem for symmetric/Hermite matricies
1+
//! Eigenvalue problem for symmetric/Hermitian matricies
22
//!
33
//! LAPACK correspondance
44
//! ----------------------

lax/src/eigh_generalized.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Compute generalized right eigenvalue and eigenvectors
1+
//! Generalized eigenvalue problem for symmetric/Hermitian matrices
22
//!
33
//! LAPACK correspondance
44
//! ----------------------

lax/src/lib.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
//! for solving least square problem by SVD
7373
//!
7474
75-
#![deny(rustdoc::broken_intra_doc_links)]
75+
#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]
7676

7777
#[cfg(any(feature = "intel-mkl-system", feature = "intel-mkl-static"))]
7878
extern crate intel_mkl_src as _src;
@@ -88,11 +88,11 @@ pub mod flags;
8888
pub mod layout;
8989

9090
pub mod eig;
91+
pub mod eigh;
92+
pub mod eigh_generalized;
9193

9294
mod alloc;
9395
mod cholesky;
94-
mod eigh;
95-
mod eigh_generalized;
9696
mod least_squares;
9797
mod opnorm;
9898
mod qr;
@@ -105,8 +105,6 @@ mod triangular;
105105
mod tridiagonal;
106106

107107
pub use self::cholesky::*;
108-
pub use self::eigh::*;
109-
pub use self::eigh_generalized::*;
110108
pub use self::flags::*;
111109
pub use self::least_squares::*;
112110
pub use self::opnorm::*;

ndarray-linalg/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
clippy::type_complexity,
4545
clippy::ptr_arg
4646
)]
47-
#![deny(rustdoc::broken_intra_doc_links)]
47+
#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]
4848

4949
#[macro_use]
5050
extern crate ndarray;

0 commit comments

Comments
 (0)