Skip to content

Commit 7d6fd72

Browse files
committed
Fix clippy
1 parent a07778e commit 7d6fd72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linalg/impl_linalg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ unsafe fn general_mat_vec_mul_impl<A, S1, S2>(
705705
///
706706
/// The kronecker product of a LxN matrix A and a MxR matrix B is a (L*M)x(N*R)
707707
/// matrix K formed by the block multiplication A_ij * B.
708-
pub fn kron<'a, A, S1, S2>(a: &ArrayBase<S1, Ix2>, b: &'a ArrayBase<S2, Ix2>) -> Array<A, Ix2>
708+
pub fn kron<A, S1, S2>(a: &ArrayBase<S1, Ix2>, b: &ArrayBase<S2, Ix2>) -> Array<A, Ix2>
709709
where
710710
S1: Data<Elem = A>,
711711
S2: Data<Elem = A>,

0 commit comments

Comments
 (0)