From 9fda561d1fa80f12e6a662c2459531848aaba2e1 Mon Sep 17 00:00:00 2001 From: Hong Jiarong Date: Sun, 21 Dec 2025 22:50:45 +0800 Subject: [PATCH] fmt --- crates/tinymist-analysis/src/flow/typst.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/crates/tinymist-analysis/src/flow/typst.rs b/crates/tinymist-analysis/src/flow/typst.rs index bff9268e2..b1e952c96 100644 --- a/crates/tinymist-analysis/src/flow/typst.rs +++ b/crates/tinymist-analysis/src/flow/typst.rs @@ -320,7 +320,10 @@ impl Builder { } } else { self.connect_open( - &false_exits.into_iter().map(OpenEdge::cond_false).collect::>(), + &false_exits + .into_iter() + .map(OpenEdge::cond_false) + .collect::>(), after, ); } @@ -362,7 +365,10 @@ impl Builder { side, ); self.connect_open( - &false_exits.into_iter().map(OpenEdge::cond_false).collect::>(), + &false_exits + .into_iter() + .map(OpenEdge::cond_false) + .collect::>(), after, );