Skip to content

Commit

Permalink
[lldb] Fix typo in the description of breakpoint options
Browse files Browse the repository at this point in the history
  • Loading branch information
kishmakov authored and sylvestre committed Aug 21, 2021
1 parent 93de779 commit 2cc1198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/source/Commands/Options.td
Expand Up @@ -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).">;
Expand Down

0 comments on commit 2cc1198

Please sign in to comment.