From c8ec6560e6a14fc5ea8aee157a65cb23883f845f Mon Sep 17 00:00:00 2001
From: Managor <42655600+Managor@users.noreply.github.com>
Date: Tue, 2 Jun 2026 17:44:41 +0300
Subject: [PATCH] lldb: merge into common (#22649)
---
pages/common/lldb.md | 6 +++---
pages/osx/lldb.md | 16 ----------------
2 files changed, 3 insertions(+), 19 deletions(-)
delete mode 100644 pages/osx/lldb.md
diff --git a/pages/common/lldb.md b/pages/common/lldb.md
index 7e0beaf88e..e06333940a 100644
--- a/pages/common/lldb.md
+++ b/pages/common/lldb.md
@@ -1,11 +1,11 @@
# lldb
> The LLVM Low-Level Debugger.
-> More information: .
+> More information: .
- Debug an executable:
-`lldb {{executable}}`
+`lldb "{{executable}}"`
- Attach `lldb` to a running process with a given PID:
@@ -13,4 +13,4 @@
- Wait for a new process to launch with a given name, and attach to it:
-`lldb -w -n {{process_name}}`
+`lldb -w -n "{{process_name}}"`
diff --git a/pages/osx/lldb.md b/pages/osx/lldb.md
deleted file mode 100644
index e06333940a..0000000000
--- a/pages/osx/lldb.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# lldb
-
-> The LLVM Low-Level Debugger.
-> More information: .
-
-- Debug an executable:
-
-`lldb "{{executable}}"`
-
-- Attach `lldb` to a running process with a given PID:
-
-`lldb -p {{pid}}`
-
-- Wait for a new process to launch with a given name, and attach to it:
-
-`lldb -w -n "{{process_name}}"`