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}}"`