Skip to content

Commit

Permalink
docs(commands): Improve the reporter's --report-formats description
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Apr 15, 2024
1 parent 9f04bfa commit 8c9dc82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class ReporterCommand : OrtCommand(

private val reportFormats by option(
"--report-formats", "-f",
help = "The comma-separated reports to generate, any of ${Reporter.ALL.keys}."
help = "A comma-separated list of report formats to generate, any of ${Reporter.ALL.keys}."
).convert { name ->
Reporter.ALL[name] ?: throw BadParameterValue("Report formats must be one or more of ${Reporter.ALL.keys}.")
}.split(",").required().outputGroup()
Expand Down

0 comments on commit 8c9dc82

Please sign in to comment.