[Reproducers] Fix incorrect help message
authorJonas Devlieghere <jonas@devlieghere.com>
Tue, 30 Jul 2019 18:06:38 +0000 (18:06 +0000)
committerJonas Devlieghere <jonas@devlieghere.com>
Tue, 30 Jul 2019 18:06:38 +0000 (18:06 +0000)
The help message mentioned the `log` command (probably because I copied
it from there originally).

llvm-svn: 367338

lldb/source/Commands/CommandObjectReproducer.cpp

index 4b0e9e3..895a9cc 100644 (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)));