Fix compilation issue
This commit is contained in:
parent
ed350dc222
commit
3660a35923
10
src/incr.rs
10
src/incr.rs
@ -32,10 +32,16 @@ pub fn incr(options: &Options, should_increment: bool) -> Result<String, KakErro
|
|||||||
}))?;
|
}))?;
|
||||||
|
|
||||||
Ok(if err_count == 0 {
|
Ok(if err_count == 0 {
|
||||||
format!("{} {} selections by {}",if options.should_increment {"Incr"} else {"Decr"}, selections.len(), options.amount)
|
format!(
|
||||||
|
"{} {} selections by {}",
|
||||||
|
if should_increment { "Incr" } else { "Decr" },
|
||||||
|
selections.len(),
|
||||||
|
options.amount
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
format!(
|
format!(
|
||||||
"{} {} selections by {} ({} errors)",if options.should_increment {"Incr"} else {"Decr"},
|
"{} {} selections by {} ({} errors)",
|
||||||
|
if should_increment { "Incr" } else { "Decr" },
|
||||||
selections.len().saturating_sub(err_count),
|
selections.len().saturating_sub(err_count),
|
||||||
options.amount,
|
options.amount,
|
||||||
err_count,
|
err_count,
|
||||||
|
Loading…
Reference in New Issue
Block a user