Remove excess indentation

This commit is contained in:
mkorje 2025-03-25 23:18:43 +11:00
parent db46115891
commit b89cdbbfad
No known key found for this signature in database

View File

@ -95,11 +95,11 @@ pub fn layout_mat(
for &offset in &aug.vline.0 {
if offset == 0 || offset.unsigned_abs() >= ncols {
bail!(
span,
"cannot draw a vertical line after column {} of a matrix with {} columns",
if offset < 0 { ncols as isize + offset } else { offset },
ncols
);
span,
"cannot draw a vertical line after column {} of a matrix with {} columns",
if offset < 0 { ncols as isize + offset } else { offset },
ncols
);
}
}
}