From 2cc1198e36d042f9a5cd8d66773d7e85d1d0c62f Mon Sep 17 00:00:00 2001 From: Kirill Shmakov Date: Fri, 20 Aug 2021 15:27:37 +0300 Subject: [PATCH] [lldb] Fix typo in the description of breakpoint options --- lldb/source/Commands/Options.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td index b78fb37..56f7720 100644 --- a/lldb/source/Commands/Options.td +++ b/lldb/source/Commands/Options.td @@ -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).">; -- 2.7.4