Skip to content

Commit

Permalink
Minor formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRandomLabs committed Jan 20, 2021
1 parent ce76f6a commit c10a0a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ protected void appendChangelogEntries(
if (!line.isEmpty()) {
builder.append("\t\t\t");

//For consistency, we change "- " to "* " at line beginnings.
if (line.startsWith("- ") && line.length() > 2) {
//For consistency, we change "- " and "+ " to "* " at line beginnings.
if ((line.startsWith("- ") || line.startsWith("+ ")) && line.length() > 2) {
builder.append("* ").append(line.substring(2));
} else {
builder.append(line);
Expand Down

0 comments on commit c10a0a0

Please sign in to comment.