Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rben01 committed Sep 28, 2024
1 parent a92eb79 commit 58778b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions numbat/src/column_formatter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ impl ColumnFormatter {

if min_num_columns < 1 {
for entry in entries {
result += Markup::from(FormattedString(OutputType::Normal, format, entry.into()))
+ m::whitespace(" ".repeat(self.padding));
result +=
Markup::from(FormattedString(OutputType::Normal, format, entry.into()))
+ m::whitespace(" ".repeat(self.padding));
}
return result;
}
Expand Down

0 comments on commit 58778b3

Please sign in to comment.