From 4ae48916b6b21720e5801085ff0faa86a4c279ba Mon Sep 17 00:00:00 2001 From: Brooks J Rady Date: Tue, 13 Apr 2021 21:08:15 +0100 Subject: [PATCH] fix(style): run rustfmt --- src/client/panes/grid.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/client/panes/grid.rs b/src/client/panes/grid.rs index 3453367d..d7068855 100644 --- a/src/client/panes/grid.rs +++ b/src/client/panes/grid.rs @@ -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 => {