Skip to content

Commit

Permalink
fix: spacing in array toString
Browse files Browse the repository at this point in the history
  • Loading branch information
CertainLach committed May 17, 2024
1 parent f008573 commit 5073b1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/jrsonnet-evaluator/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ fn manifest_json_ex_buf(
buf.push_str(options.newline);
buf.push_str(cur_padding);
}
ToString => buf.push(' '),
Minify => {}
ToString if i != 0 => buf.push(' '),
Minify | ToString => {}
};

State::push_description(
Expand Down

0 comments on commit 5073b1b

Please sign in to comment.