diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-08 21:06:11 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-08 21:06:11 +0000 |
commit | e3d26315672b8ae63b69ae9a3a03281e7b84a42c (patch) | |
tree | 7a48cc2c77b164dc45872cbdf434d5c04e57f4ea /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 2634032c66df3656a65b2a4913efdd53a512c09b (diff) | |
download | bcm5719-llvm-e3d26315672b8ae63b69ae9a3a03281e7b84a42c.tar.gz bcm5719-llvm-e3d26315672b8ae63b69ae9a3a03281e7b84a42c.zip |
Clean up, clarify and standardize help text, and fix a few help text formatting problems.
llvm-svn: 113408
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 28520bb561a..5fa54ed67f3 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -332,7 +332,7 @@ public: CommandObjectThreadBacktrace () : CommandObject ("thread backtrace", - "Shows the stack for one or more threads. If no threads are specified, shows the currently selected thread. Use the thread-index \"all\" to see all threads.", + "Show the stack for one or more threads. If no threads are specified, shows the currently selected thread. Use the thread-index \"all\" to see all threads.", "thread backtrace [<thread-index>] ...", eFlagProcessMustBeLaunched | eFlagProcessMustBePaused), m_options() @@ -793,7 +793,7 @@ public: CommandObjectThreadContinue () : CommandObject ("thread continue", - "Continues execution of one or more threads in an active process.", + "Continue execution of one or more threads in an active process.", "thread continue <thread-index> [<thread-index> ...]", eFlagProcessMustBeLaunched | eFlagProcessMustBePaused) { @@ -1037,7 +1037,7 @@ public: CommandObjectThreadUntil () : CommandObject ("thread until", - "Runs the current or specified thread until it reaches a given line number or leaves the current function.", + "Run the current or specified thread until it reaches a given line number or leaves the current function.", "thread until [<cmd-options>] <line-number>", eFlagProcessMustBeLaunched | eFlagProcessMustBePaused), m_options () @@ -1235,7 +1235,7 @@ public: CommandObjectThreadSelect () : CommandObject ("thread select", - "Selects a threads as the currently active thread.", + "Select a threads as the currently active thread.", "thread select <thread-index>", eFlagProcessMustBeLaunched | eFlagProcessMustBePaused) { @@ -1304,7 +1304,7 @@ public: CommandObjectThreadList (): CommandObject ("thread list", - "Shows a summary of all current threads in a process.", + "Show a summary of all current threads in a process.", "thread list", eFlagProcessMustBeLaunched | eFlagProcessMustBePaused) { |