diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-06-13 16:21:24 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-06-13 16:21:24 +0000 |
commit | 4e8be2c98e4142ce02c96865f81f7ed9bdbd5f82 (patch) | |
tree | c92a9bc17209b51eff2bf8bb2b526a69c7a281d4 /lldb/source/Commands | |
parent | a6ce3fe72b5cd32bf5e3a139b3cc6844bf0cc715 (diff) | |
download | bcm5719-llvm-4e8be2c98e4142ce02c96865f81f7ed9bdbd5f82.tar.gz bcm5719-llvm-4e8be2c98e4142ce02c96865f81f7ed9bdbd5f82.zip |
Fix/unify the spelling of Objective-C.
llvm-svn: 334614
Diffstat (limited to 'lldb/source/Commands')
-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 838759dbddd..79b92dc446d 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -283,7 +283,7 @@ static OptionDefinition g_breakpoint_set_options[] = { { LLDB_OPT_SET_9, false, "source-regexp-function", 'X', OptionParser::eRequiredArgument, nullptr, nullptr, CommandCompletions::eSymbolCompletion, eArgTypeFunctionName, "When used with '-p' limits the source regex to source contained in the named " "functions. Can be repeated multiple times." }, { LLDB_OPT_SET_4, true, "fullname", 'F', OptionParser::eRequiredArgument, nullptr, nullptr, CommandCompletions::eSymbolCompletion, eArgTypeFullName, "Set the breakpoint by fully qualified function names. For C++ this means " - "namespaces and all arguments, and for Objective C this means a full function " + "namespaces and all arguments, and for Objective-C this means a full function " "prototype with class and selector. Can be repeated multiple times to make " "one breakpoint for multiple names." }, { LLDB_OPT_SET_5, true, "selector", 'S', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeSelector, "Set the breakpoint by ObjC selector name. Can be repeated multiple times to " |