From c7100dc9895c0f0704ea31c712564a73b8bed97c Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 6 Jun 2024 15:54:04 -0600 Subject: [PATCH] Format --- src/buffer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.rs b/src/buffer.rs index fec3c31..9b844e5 100644 --- a/src/buffer.rs +++ b/src/buffer.rs @@ -131,7 +131,7 @@ impl<'b> Iterator for LayoutRunIter<'b> { if let Some(glyph_line_height) = glyph.line_height_opt { line_height_opt = match line_height_opt { Some(line_height) => Some(line_height.max(glyph_line_height)), - None => Some(glyph_line_height) + None => Some(glyph_line_height), }; } }