Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Feb 28, 2024
1 parent fcc042b commit cec5236
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/rs/mapfile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = &section_alone_match["section"];
Expand Down

0 comments on commit cec5236

Please sign in to comment.