Skip to content

Commit

Permalink
Merge pull request #706 from jplag/important-fix
Browse files Browse the repository at this point in the history
Fix CLI help text header
  • Loading branch information
tsaglam authored Sep 29, 2022
2 parents 3db7536 + 091aac4 commit 4ca558c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/de/jplag/CLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ private static ClusteringOptions getClusteringOptions(Namespace namespace) {

private String generateDescription() {
var randomDescription = DESCRIPTIONS[RANDOM.nextInt(DESCRIPTIONS.length)];
return String.format("JPlag - %s%n%s", CREDITS, randomDescription);
return String.format("JPlag - %s%n%n%s", randomDescription, CREDITS);
}

private void addAllMultiValueArgument(List<List<String>> argumentValues, List<String> destinationRootDirectories) {
Expand Down

0 comments on commit 4ca558c

Please sign in to comment.