Skip to content

Commit

Permalink
Merge pull request #1722 from jplag/feature/cli-MissingLineSeparator
Browse files Browse the repository at this point in the history
Added missing line separator
  • Loading branch information
tsaglam authored Apr 24, 2024
2 parents 95663ed + 973fa9e commit 636608a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/main/java/de/jplag/cli/options/CliOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static class Merging {
public boolean enabled = MergingOptions.DEFAULT_ENABLED;

@Option(names = {
"--neighbor-length"}, description = "Minimal length of neighboring matches to be merged (between 1 and minTokenMatch, default: ${DEFAULT-VALUE}).%n")
"--neighbor-length"}, description = "Minimal length of neighboring matches to be merged (between 1 and minTokenMatch, default: ${DEFAULT-VALUE}).")
public int minimumNeighborLength = MergingOptions.DEFAULT_NEIGHBOR_LENGTH;

@Option(names = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private CommandLine buildCommandLine() {
return PARAMETER_SHORT_ADDITIONAL_INDENT + it;
}
return it;
}).collect(Collectors.joining(System.lineSeparator())));
}).collect(Collectors.joining(System.lineSeparator())) + System.lineSeparator());

buildSubcommands().forEach(cli::addSubcommand);

Expand Down

0 comments on commit 636608a

Please sign in to comment.