[Lldb-commits] [lldb] r367338 - [Reproducers] Fix incorrect help message

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 30 11:06:38 PDT 2019


Author: jdevlieghere
Date: Tue Jul 30 11:06:38 2019
New Revision: 367338

URL: http://llvm.org/viewvc/llvm-project?rev=367338&view=rev
Log:
[Reproducers] Fix incorrect help message

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

Modified:
    lldb/trunk/source/Commands/CommandObjectReproducer.cpp

Modified: lldb/trunk/source/Commands/CommandObjectReproducer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectReproducer.cpp?rev=367338&r1=367337&r2=367338&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectReproducer.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectReproducer.cpp Tue Jul 30 11:06:38 2019
@@ -102,8 +102,8 @@ CommandObjectReproducer::CommandObjectRe
     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)));




More information about the lldb-commits mailing list