Skip to content

Commit

Permalink
fixed formatting issue in help
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudenw committed May 4, 2024
1 parent a9e9077 commit 983e48b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apache-rat-core/src/main/java/org/apache/rat/Report.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public class Report {
* Name of File to exclude from report consideration.
*/
static final Option EXCLUDE_CLI = Option.builder("e").longOpt("exclude").hasArgs().argName("Expression")
.desc("Excludes files matching wildcard <expression>. May be followed by multiple arguments"
.desc("Excludes files matching wildcard <expression>. May be followed by multiple arguments. "
+ "Note that '--' or a following option is required when using this parameter.")
.build();
/**
Expand All @@ -148,7 +148,7 @@ public class Report {
*/
static final Option EXCLUDE_FILE_CLI = Option.builder("E").longOpt("exclude-file")
.argName("FileOrURI")
.hasArgs().desc("Excludes files matching regular expression in the input file.")
.hasArg().desc("Excludes files matching regular expression in the input file.")
.build();

/**
Expand Down

0 comments on commit 983e48b

Please sign in to comment.