forked from OSchip/llvm-project
[lldb] Fix typo in the description of breakpoint options
This commit is contained in:
parent
93de779d63
commit
2cc1198e36
|
@ -151,10 +151,10 @@ let Command = "breakpoint set" in {
|
|||
def breakpoint_set_selector : Option<"selector", "S">, Group<5>,
|
||||
Arg<"Selector">, Required,
|
||||
Desc<"Set the breakpoint by ObjC selector name. Can be repeated multiple "
|
||||
"times tomake one breakpoint for multiple Selectors.">;
|
||||
"times to make one breakpoint for multiple Selectors.">;
|
||||
def breakpoint_set_method : Option<"method", "M">, Group<6>, Arg<"Method">,
|
||||
Required, Desc<"Set the breakpoint by C++ method names. Can be repeated "
|
||||
"multiple times tomake one breakpoint for multiple methods.">;
|
||||
"multiple times to make one breakpoint for multiple methods.">;
|
||||
def breakpoint_set_func_regex : Option<"func-regex", "r">, Group<7>,
|
||||
Arg<"RegularExpression">, Required, Desc<"Set the breakpoint by function "
|
||||
"name, evaluating a regular-expression to find the function name(s).">;
|
||||
|
|
Loading…
Reference in New Issue