From b89cdbbfad63e4f96b5793aea85e4e31671c5809 Mon Sep 17 00:00:00 2001 From: mkorje Date: Tue, 25 Mar 2025 23:18:43 +1100 Subject: [PATCH] Remove excess indentation --- crates/typst-layout/src/math/mat.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/typst-layout/src/math/mat.rs b/crates/typst-layout/src/math/mat.rs index 4772c8777..d3997f5b9 100644 --- a/crates/typst-layout/src/math/mat.rs +++ b/crates/typst-layout/src/math/mat.rs @@ -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 + ); } } }