Skip to content

Commit c49b2ba

Browse files
idodeclareVladimir Kotal
authored andcommitted
Fix to follow "concise formatting" guide
1 parent 5e426b1 commit c49b2ba

File tree

1 file changed

+2
-3
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/index

1 file changed

+2
-3
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/index/Indexer.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -720,9 +720,8 @@ public static String[] parseOptions(String[] argv) throws ParseException {
720720
"Option may be repeated.").Do(v -> repositories.add((String) v));
721721

722722
parser.on("-S", "--search", "=[path/to/repository]",
723-
"Search for source repositories under -s,--source, and add them." +
724-
"Path (relative to the source root) to repository is optional. " +
725-
"Option may be repeated.").Do(v -> {
723+
"Search for source repositories under -s,--source, and add them. Path",
724+
"(relative to the source root) is optional. Option may be repeated.").Do(v -> {
726725
searchRepositories = true;
727726
String repoPath = (String) v;
728727
if (!repoPath.isEmpty()) {

0 commit comments

Comments
 (0)