From: Jonas Devlieghere Date: Tue, 30 Jul 2019 18:06:38 +0000 (+0000) Subject: [Reproducers] Fix incorrect help message X-Git-Tag: llvmorg-11-init~13272 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=130ec06843fad63e45a08f5825b0bbba9e5f557e;p=platform%2Fupstream%2Fllvm.git [Reproducers] Fix incorrect help message The help message mentioned the `log` command (probably because I copied it from there originally). llvm-svn: 367338 --- diff --git a/lldb/source/Commands/CommandObjectReproducer.cpp b/lldb/source/Commands/CommandObjectReproducer.cpp index 4b0e9e3..895a9cc 100644 --- a/lldb/source/Commands/CommandObjectReproducer.cpp +++ b/lldb/source/Commands/CommandObjectReproducer.cpp @@ -102,8 +102,8 @@ CommandObjectReproducer::CommandObjectReproducer( CommandInterpreter &interpreter) : CommandObjectMultiword( interpreter, "reproducer", - "Commands to inspect and manipulate the reproducer functionality.", - "log []") { + "Commands for manipulate the reproducer functionality.", + "reproducer []") { LoadSubCommand( "generate", CommandObjectSP(new CommandObjectReproducerGenerate(interpreter)));