Skip to content

Commit 7e61539

Browse files
committed
Fix markdown table
1 parent 1b1bc82 commit 7e61539

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: lax/src/solve.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ impl_lu!(f32, lapack_sys::sgetrf_);
7979
/// be reinterpreted as Fortran layout) and applying the
8080
/// elementwise conjugate to `x` and `b`.
8181
///
82-
/// LAPACK correspondance
83-
/// ----------------------
84-
///
85-
/// | f32 | f64 | c32 | c64 |
86-
/// |:-------|:-------|:-------|:-------|
87-
/// | sgetrs | dgetrs | cgetrs | zgetrs |
88-
///
8982
pub trait SolveImpl: Scalar {
83+
/// LAPACK correspondance
84+
/// ----------------------
85+
///
86+
/// | f32 | f64 | c32 | c64 |
87+
/// |:-------|:-------|:-------|:-------|
88+
/// | sgetrs | dgetrs | cgetrs | zgetrs |
89+
///
9090
fn solve(l: MatrixLayout, t: Transpose, a: &[Self], p: &Pivot, b: &mut [Self]) -> Result<()>;
9191
}
9292

0 commit comments

Comments
 (0)