[lldb] Fix typo in the description of breakpoint options

This commit is contained in:
Kirill Shmakov 2021-08-20 15:27:37 +03:00 committed by Sylvestre Ledru
parent 93de779d63
commit 2cc1198e36
1 changed files with 2 additions and 2 deletions

View File

@ -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).">;