Improve doc comment

pull/888/head
Wilfred Hughes 2025-10-02 00:58:08 +07:00
parent 6251c2fd7f
commit 76eba0c3fe
1 changed files with 4 additions and 2 deletions

@ -158,9 +158,11 @@ struct SourceDimensions {
/// The number of characters required to display line numbers on
/// the RHS.
rhs_line_nums_width: usize,
/// The highest line number in the LHS source.
/// The highest line number in the LHS source that we will
/// display.
lhs_max_line: LineNumber,
/// The highest line number in the RHS source.
/// The highest line number in the RHS source that we will
/// display.
rhs_max_line: LineNumber,
}