Skip to content

Commit e2a44d0

Browse files
committed
refactor: Rename variable
The fold chaining is to find max line number rather than line number width
1 parent 2807db7 commit e2a44d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/renderer/display_list.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ impl<'a> fmt::Debug for DisplayList<'a> {
7272

7373
impl<'a> Display for DisplayList<'a> {
7474
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
75-
let lineno_width = self.body.iter().fold(None, |max, set| {
75+
let max_lineno = self.body.iter().fold(None, |max, set| {
7676
set.display_lines.iter().fold(max, |max, line| match line {
7777
DisplayLine::Source { lineno, .. } => std::cmp::max(max, *lineno),
7878
_ => max,
7979
})
8080
});
81-
let lineno_width = match lineno_width {
81+
let lineno_width = match max_lineno {
8282
None => 0,
8383
Some(_max) if self.anonymized_line_numbers => ANONYMIZED_LINE_NUM.len(),
8484
Some(0) => 1,

0 commit comments

Comments
 (0)