From a2841103a192deb58013a612b2da60aa72131b3c Mon Sep 17 00:00:00 2001 From: Nik Revenco Date: Tue, 17 Jun 2025 12:04:20 +0100 Subject: [PATCH] style: `cargo fmt` --- helix-core/src/syntax.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 1c8a096b6..702cc0483 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -465,7 +465,11 @@ impl Syntax { self.inner.layer_for_byte_range(start, end) } - pub fn layers_for_byte_range(&self, start: u32, end: u32) -> impl Iterator + use<'_> { + pub fn layers_for_byte_range( + &self, + start: u32, + end: u32, + ) -> impl Iterator + use<'_> { self.inner.layers_for_byte_range(start, end) }