diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index 8c0945917ca67..581421ea95dbe 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -117,8 +117,9 @@ class CommandObjectProcessLaunch : public CommandObjectProcessLaunchOrAttach { CommandObjectProcessLaunch(CommandInterpreter &interpreter) : CommandObjectProcessLaunchOrAttach( interpreter, "process launch", - "Launch the executable in the debugger.", nullptr, - eCommandRequiresTarget, "restart"), + "Launch the executable in the debugger. If no run-args are " + "specified, the arguments from target.run-args are used.", + nullptr, eCommandRequiresTarget, "restart"), m_class_options("scripted process", true, 'C', 'k', 'v', 0) { m_all_options.Append(&m_options);