diff options
author | Adrian McCarthy <amccarth@google.com> | 2020-01-28 15:15:58 -0800 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2020-02-03 14:22:05 -0800 |
commit | 0e362d82b97fe16b5671ceeb2f3e5b6f4ccf00dd (patch) | |
tree | 4cd977e5b18dd953e0cae8d374165c66f3c9967e /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | c25938d57b1cf9534887313405bc409e570a9b69 (diff) | |
download | llvm-0e362d82b97fe16b5671ceeb2f3e5b6f4ccf00dd.zip llvm-0e362d82b97fe16b5671ceeb2f3e5b6f4ccf00dd.tar.gz llvm-0e362d82b97fe16b5671ceeb2f3e5b6f4ccf00dd.tar.bz2 |
Improve help text for (lldb) target symbols add
There were some missing words and awkward syntax. I think this is clearer.
Differential Revision: https://reviews.llvm.org/D73589
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index b08a29d..0239f7e 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -3999,19 +3999,20 @@ public: : CommandObjectParsed( interpreter, "target symbols add", "Add a debug symbol file to one of the target's current modules by " - "specifying a path to a debug symbols file, or using the options " - "to specify a module to download symbols for.", + "specifying a path to a debug symbols file or by using the options " + "to specify a module.", "target symbols add <cmd-options> [<symfile>]", eCommandRequiresTarget), m_option_group(), m_file_option( LLDB_OPT_SET_1, false, "shlib", 's', CommandCompletions::eModuleCompletion, eArgTypeShlibName, - "Fullpath or basename for module to find debug symbols for."), + "Locate the debug symbols for the shared library specified by " + "name."), m_current_frame_option( LLDB_OPT_SET_2, false, "frame", 'F', - "Locate the debug symbols the currently selected frame.", false, - true) + "Locate the debug symbols for the currently selected frame.", + false, true) { m_option_group.Append(&m_uuid_option_group, LLDB_OPT_SET_ALL, |