From cec52367733e7eb4289c3011573af10647bec161 Mon Sep 17 00:00:00 2001 From: angie Date: Tue, 27 Feb 2024 21:47:33 -0300 Subject: [PATCH] fmt --- src/rs/mapfile.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rs/mapfile.rs b/src/rs/mapfile.rs index 9da1178..77d415d 100644 --- a/src/rs/mapfile.rs +++ b/src/rs/mapfile.rs @@ -154,7 +154,9 @@ impl MapFile { size, section_type, )); - } else if let Some(section_alone_match) = regex_section_alone_entry.captures(prev_line) { + } else if let Some(section_alone_match) = + regex_section_alone_entry.captures(prev_line) + { // Some sections may be too large, making the entry be splitted between two lines, making the section name be in one line and the rest of the info in the next one let section_type = §ion_alone_match["section"];