diff options
author | Sean Callanan <scallanan@apple.com> | 2013-03-26 17:45:02 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2013-03-26 17:45:02 +0000 |
commit | bce7c77d852d85ba7fab3bfb60e8bdecdd01763a (patch) | |
tree | 1bc9bbcaeaeb5ebf296463029faca9befb6c5786 /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | b1e02b2af246f5663c0cf0d4c8fbb01bb2a23a60 (diff) | |
download | bcm5719-llvm-bce7c77d852d85ba7fab3bfb60e8bdecdd01763a.tar.gz bcm5719-llvm-bce7c77d852d85ba7fab3bfb60e8bdecdd01763a.zip |
Fixed a typo.
llvm-svn: 178039
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 9775cd48270..24ecc19fdb5 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -989,7 +989,7 @@ CommandObjectBreakpointModify::CommandOptions::g_option_table[] = { { LLDB_OPT_SET_ALL, false, "ignore-count", 'i', required_argument, NULL, 0, eArgTypeCount, "Set the number of times this breakpoint is skipped before stopping." }, { LLDB_OPT_SET_ALL, false, "one-shot", 'o', required_argument, NULL, 0, eArgTypeBoolean, "The breakpoint is deleted the first time it stop causes a stop." }, -{ LLDB_OPT_SET_ALL, false, "thread-index", 'x', required_argument, NULL, 0, eArgTypeThreadIndex, "The breakpoint stops only for the thread whose indeX matches this argument."}, +{ LLDB_OPT_SET_ALL, false, "thread-index", 'x', required_argument, NULL, 0, eArgTypeThreadIndex, "The breakpoint stops only for the thread whose index matches this argument."}, { LLDB_OPT_SET_ALL, false, "thread-id", 't', required_argument, NULL, 0, eArgTypeThreadID, "The breakpoint stops only for the thread whose TID matches this argument."}, { LLDB_OPT_SET_ALL, false, "thread-name", 'T', required_argument, NULL, 0, eArgTypeThreadName, "The breakpoint stops only for the thread whose thread name matches this argument."}, { LLDB_OPT_SET_ALL, false, "queue-name", 'q', required_argument, NULL, 0, eArgTypeQueueName, "The breakpoint stops only for threads in the queue whose name is given by this argument."}, |