Author: Doeke Wartena
Date: 2025-04-01T08:49:36-07:00
New Revision: a03fce4e200d47b9133897b8f0d4688b30b42689

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

LOG: Update README.md - fixed invalid json in example (#133890)

A period (`,`) is required or you get an error.

Added: 
    

Modified: 
    lldb/tools/lldb-dap/README.md

Removed: 
    


################################################################################
diff  --git a/lldb/tools/lldb-dap/README.md b/lldb/tools/lldb-dap/README.md
index 725e9cf63e02a..2f6a51a591914 100644
--- a/lldb/tools/lldb-dap/README.md
+++ b/lldb/tools/lldb-dap/README.md
@@ -37,7 +37,7 @@ adds `FOO=1` and `bar` to the environment:
   "program": "/tmp/a.out",
   "args": [ "one", "two", "three" ],
   "env": {
-    "FOO": "1"
+    "FOO": "1",
     "BAR": ""
   }
 }


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to