ottlinger commented on code in PR #249:
URL: https://github.com/apache/creadur-rat/pull/249#discussion_r1597487776
##########
apache-rat-core/src/main/java/org/apache/rat/Report.java:
##########
@@ -246,11 +246,20 @@ public String desc() {
* @since 0.17.0
*/
static final Option ARCHIVE =
Option.builder().longOpt("archive").hasArg().argName("ProcessingType")
- .desc(format("Specifies the level of detail in ARCHIVE reporting.
(default is %s)",
+ .desc(format("Specifies the level of detail in ARCHIVE file
reporting. (default is %s)",
ReportConfiguration.Processing.NOTIFICATION))
.converter(s ->
ReportConfiguration.Processing.valueOf(s.toUpperCase()))
.build();
+ /**
+ * Specify the processing of STANDARD files.
+ */
+ static final Option STANDARD =
Option.builder().longOpt("standard").hasArg().argName("ProcessingType")
+ .desc(format("Specifies the level of detail in STANDARD file
reporting.. (default is %s)",
Review Comment:
Double dot in this sentence - pls update the site template as well to keep
it in sync with your changes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]