Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 6, 2025
1 parent 5d91bfb commit 816e1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/formatting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pub fn display_tag_map_option(opt: &Option<TagMap>) -> String {
let mut s = String::new();
let iter = val.0.clone().into_iter();
for (k, v) in iter {
let line = format!("{}: {}\n", k, v);
let line = format!("\"{}\": {}\n", k, v);
s += line.as_str()
}

Expand Down

0 comments on commit 816e1b3

Please sign in to comment.