fix(style): run rustfmt

This commit is contained in:
Brooks J Rady 2021-04-13 21:08:15 +01:00
parent a16a8ad6e3
commit 4ae48916b6

View file

@ -84,8 +84,7 @@ fn transfer_rows_down(
if !next_lines.is_empty() {
match max_src_width {
Some(max_row_width) => {
let excess_rows =
Row::from_rows(next_lines).split_to_rows_of_length(max_row_width);
let excess_rows = Row::from_rows(next_lines).split_to_rows_of_length(max_row_width);
source.extend(excess_rows);
}
None => {