Skip to content

Commit 07af805

Browse files
Fix clippy error
1 parent 33db09a commit 07af805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fplus-lib/src/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn compare_allowance_and_allocation(
3838
pub fn process_amount(mut amount: String) -> String {
3939
// Trim 'S' or 's' from the end of the string
4040
amount = amount
41-
.trim_end_matches(|c: char| c == 'S' || c == 's')
41+
.trim_end_matches(['s', 'S'])
4242
.to_string();
4343

4444
// Replace 'b' with 'B'

0 commit comments

Comments
 (0)