FIX: Apply copilot suggestions

This commit is contained in:
Nicolás Hatcher
2025-07-19 07:51:05 +02:00
committed by Nicolás Hatcher Andrés
parent 9852ce2504
commit 266c14d5d2
2 changed files with 10 additions and 19 deletions

View File

@@ -1603,7 +1603,7 @@ impl UserModel {
}
/// Returns the largest column in the row less than a column whose cell has a non empty value.
/// If the row is empty, it returns `None`.
/// If there are none it returns `None`.
/// This is useful when rendering a part of a worksheet to know which cells spill over
pub fn get_last_non_empty_in_row_before_column(
&self,
@@ -1633,7 +1633,9 @@ impl UserModel {
}
}
/// Returns the largest column in the row greater than a column whose cell has a non empty value.
/// Returns the smallest column in the row larger than "column" whose cell has a non empty value.
/// If there are none it returns `None`.
/// This is useful when rendering a part of a worksheet to know which cells spill over
pub fn get_first_non_empty_in_row_after_column(
&self,
sheet: u32,