[Reproducers] Fix incorrect help message

The help message mentioned the `log` command (probably because I copied
it from there originally).

llvm-svn: 367338
This commit is contained in:
Jonas Devlieghere 2019-07-30 18:06:38 +00:00
parent c0e275df3d
commit 130ec06843
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ CommandObjectReproducer::CommandObjectReproducer(
CommandInterpreter &interpreter)
: CommandObjectMultiword(
interpreter, "reproducer",
"Commands to inspect and manipulate the reproducer functionality.",
"log <subcommand> [<command-options>]") {
"Commands for manipulate the reproducer functionality.",
"reproducer <subcommand> [<subcommand-options>]") {
LoadSubCommand(
"generate",
CommandObjectSP(new CommandObjectReproducerGenerate(interpreter)));