From 130ec06843fad63e45a08f5825b0bbba9e5f557e Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 30 Jul 2019 18:06:38 +0000 Subject: [PATCH] [Reproducers] Fix incorrect help message The help message mentioned the `log` command (probably because I copied it from there originally). llvm-svn: 367338 --- lldb/source/Commands/CommandObjectReproducer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))); -- 2.7.4