Skip to content

Commit

Permalink
replace tab with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
khyatimahendru committed Jan 8, 2025
1 parent 55fc50e commit 35c4b28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void showUsage(String message) {
ifNotNullThen(message, m -> System.err.println(m));
ifNotNullThen(this.usageForms, () -> {
System.err.println("Usage forms:");
this.usageForms.forEach(form -> System.err.printf("\t%s%n", form));
this.usageForms.forEach(form -> System.err.printf(" %s%n", form));
});
System.err.println("Options supported:");
optionMap.forEach((option, method) -> System.err.printf(" %s %12s %s%n",
Expand Down

0 comments on commit 35c4b28

Please sign in to comment.