Skip to content

Commit

Permalink
Improve Diffable output
Browse files Browse the repository at this point in the history
A space separator between kind="" and indent="" has been missing. File
was still parsable, but is easier to read when adding it back.
  • Loading branch information
schierlm committed Oct 23, 2024
1 parent 6f319a6 commit 65b82e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public void visitLineBreak(ExtendedLineBreakKind kind, int indent) throws IOExce
} else if (indent == 0) {
w.write("<br kind=\"" + kind.name() + "\"/>");
} else {
w.write("<br kind=\"" + kind.name() + "\"indent=\"" + indent + "\"/>");
w.write("<br kind=\"" + kind.name() + "\" indent=\"" + indent + "\"/>");
}
if (linePrefix != null)
startNewLine = true;
Expand Down

0 comments on commit 65b82e8

Please sign in to comment.