[Lldb-commits] [lldb] Update InterpreterProperties.td (PR #140746)

Anthony Cabrera-Lara via lldb-commits lldb-commits at lists.llvm.org
Tue May 20 08:08:02 PDT 2025


https://github.com/anthonycabreralara created https://github.com/llvm/llvm-project/pull/140746

Fix typo in interpreter property description

>From cd4f55e952ea2b5f8420d9f8ca3affde2045819a Mon Sep 17 00:00:00 2001
From: Anthony Cabrera-Lara
 <60250777+anthonycabreralara at users.noreply.github.com>
Date: Tue, 20 May 2025 11:07:12 -0400
Subject: [PATCH] Update InterpreterProperties.td

Fix typo in interpreter property description
---
 lldb/source/Interpreter/InterpreterProperties.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/source/Interpreter/InterpreterProperties.td b/lldb/source/Interpreter/InterpreterProperties.td
index 834f7be17480c..ffb87ea5e045d 100644
--- a/lldb/source/Interpreter/InterpreterProperties.td
+++ b/lldb/source/Interpreter/InterpreterProperties.td
@@ -31,7 +31,7 @@ let Definition = "interpreter" in {
   def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">,
     Global,
     DefaultFalse,
-    Desc<"If true, blank lines will be printed between between REPL submissions.">;
+    Desc<"If true, blank lines will be printed between REPL submissions.">;
   def EchoCommands: Property<"echo-commands", "Boolean">,
     Global,
     DefaultTrue,



More information about the lldb-commits mailing list