Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 3, 2025
1 parent fe764a7 commit e6e609f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/responses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ where
fn display_arg_table(xs: &XArguments) -> String {
let mut s = String::new();
for (k, v) in xs.0.iter() {
let line = format!("{}: {}{}", k, v, LINE_ENDING);
let line = format!("{}: {}", k, v);
s += line.as_str()
}

Expand Down

0 comments on commit e6e609f

Please sign in to comment.