We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33db09a commit 07af805Copy full SHA for 07af805
fplus-lib/src/helpers.rs
@@ -38,7 +38,7 @@ pub fn compare_allowance_and_allocation(
38
pub fn process_amount(mut amount: String) -> String {
39
// Trim 'S' or 's' from the end of the string
40
amount = amount
41
- .trim_end_matches(|c: char| c == 'S' || c == 's')
+ .trim_end_matches(['s', 'S'])
42
.to_string();
43
44
// Replace 'b' with 'B'
0 commit comments