FIX: Make clippy happy

This is mostly Rust 1.83
This commit is contained in:
Nicolás Hatcher
2024-11-29 19:39:20 +01:00
committed by Nicolás Hatcher Andrés
parent 1f5f575e7a
commit e065477b5a
6 changed files with 33 additions and 33 deletions

View File

@@ -550,7 +550,7 @@ impl Model {
}
result.push(ch);
}
return CalcResult::String(result.chars().rev().collect::<String>());
CalcResult::String(result.chars().rev().collect::<String>())
}
pub(crate) fn fn_mid(&mut self, args: &[Node], cell: CellReferenceIndex) -> CalcResult {