From 18347b243ce7edacbc0378c4428181c49dbc3854 Mon Sep 17 00:00:00 2001 From: mkorje Date: Tue, 10 Jun 2025 20:59:18 +1000 Subject: [PATCH] Put super and crate imports in the same group --- crates/typst-layout/src/math/fragment.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/typst-layout/src/math/fragment.rs b/crates/typst-layout/src/math/fragment.rs index dfc3c1729..526e5a3e3 100644 --- a/crates/typst-layout/src/math/fragment.rs +++ b/crates/typst-layout/src/math/fragment.rs @@ -16,11 +16,10 @@ use typst_syntax::Span; use typst_utils::{default_math_class, Get}; use unicode_math_class::MathClass; +use super::MathContext; use crate::inline::create_shape_plan; use crate::modifiers::{FrameModifiers, FrameModify}; -use super::MathContext; - /// Maximum number of times extenders can be repeated. const MAX_REPEATS: usize = 1024;