[Lldb-commits] [lldb] e327ea4 - [lldb] Fix typo in breakpoint set -r description

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 23 03:06:46 PDT 2020


Author: Raphael Isemann
Date: 2020-04-23T12:06:27+02:00
New Revision: e327ea4a82874f535b6ea93e39ea58643aef88bd

URL: https://github.com/llvm/llvm-project/commit/e327ea4a82874f535b6ea93e39ea58643aef88bd
DIFF: https://github.com/llvm/llvm-project/commit/e327ea4a82874f535b6ea93e39ea58643aef88bd.diff

LOG: [lldb] Fix typo in breakpoint set -r description

Added: 
    

Modified: 
    lldb/source/Commands/Options.td

Removed: 
    


################################################################################
diff  --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td
index b0cf97e067cc..05c7b3213e2a 100644
--- a/lldb/source/Commands/Options.td
+++ b/lldb/source/Commands/Options.td
@@ -157,7 +157,7 @@ let Command = "breakpoint set" in {
     "multiple times tomake 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 findthe function name(s).">;
+    "name, evaluating a regular-expression to find the function name(s).">;
   def breakpoint_set_basename : Option<"basename", "b">, Group<8>,
     Arg<"FunctionName">, Required, Completion<"Symbol">,
     Desc<"Set the breakpoint by function basename (C++ namespaces and arguments"


        


More information about the lldb-commits mailing list