FIX: Fix several indentation issues in comments

Thanks clippy!
This commit is contained in:
Nicolás Hatcher
2024-11-16 13:02:45 +01:00
committed by Nicolás Hatcher Andrés
parent 24dd63b261
commit bdd2c8fe04
5 changed files with 9 additions and 7 deletions

View File

@@ -254,6 +254,7 @@ impl Worksheet {
/// Changes the height of a row.
/// * If the row does not a have a style we add it.
/// * If it has we modify the height and make sure it is applied.
///
/// Fails if column index is outside allowed range.
pub fn set_row_height(&mut self, row: i32, height: f64) -> Result<(), String> {
if !is_valid_row(row) {
@@ -282,6 +283,7 @@ impl Worksheet {
/// Changes the width of a column.
/// * If the column does not a have a width we simply add it
/// * If it has, it might be part of a range and we ned to split the range.
///
/// Fails if column index is outside allowed range.
pub fn set_column_width(&mut self, column: i32, width: f64) -> Result<(), String> {
self.set_column_width_and_style(column, width, None)