Skip to content

Commit

Permalink
remove a stray dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Jun 21, 2024
1 parent fb72384 commit dcfbe9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ impl<'a> Formatter<'a> {
&& !(br.value.lines.first()).is_some_and(|line| line.is_empty());
if add_leading_newline {
self.output.push('\n');
for _ in 0..dbg!(self.config.multiline_indent * (depth + 1)) {
for _ in 0..self.config.multiline_indent * (depth + 1) {
self.output.push(' ');
}
}
Expand Down

0 comments on commit dcfbe9e

Please sign in to comment.