https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/181717
This patch addresses some post-merge comments from llvm-project#181594, where the tutorial name for Scripted Symbol Locator was missing a word and wasn't capitalized properly. >From b4bb432deba0590a2008098524450ca4e37c4a48 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani <[email protected]> Date: Mon, 16 Feb 2026 10:26:18 -0800 Subject: [PATCH] [lldb/docs] Update Scripted Symbol Locator tutorial title (NFC) This patch addresses some post-merge comments from llvm-project#181594, where the tutorial name for Scripted Symbol Locator was missing a word and wasn't capitalized properly. Signed-off-by: Med Ismail Bennani <[email protected]> --- lldb/docs/use/python-reference.rst | 2 +- .../{hunting-down-symbols.md => custom-symbol-resolution.md} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename lldb/docs/use/tutorials/{hunting-down-symbols.md => custom-symbol-resolution.md} (99%) diff --git a/lldb/docs/use/python-reference.rst b/lldb/docs/use/python-reference.rst index b14b2b67e6055..3e7d56f4a2096 100644 --- a/lldb/docs/use/python-reference.rst +++ b/lldb/docs/use/python-reference.rst @@ -28,4 +28,4 @@ The following tutorials and documentation demonstrate various Python capabilitie tutorials/implementing-standalone-scripts tutorials/custom-frame-recognizers tutorials/extending-target-stop-hooks - tutorials/hunting-down-symbols + tutorials/custom-symbol-resolution diff --git a/lldb/docs/use/tutorials/hunting-down-symbols.md b/lldb/docs/use/tutorials/custom-symbol-resolution.md similarity index 99% rename from lldb/docs/use/tutorials/hunting-down-symbols.md rename to lldb/docs/use/tutorials/custom-symbol-resolution.md index 8ef7beb5c6284..c5a5864283bec 100644 --- a/lldb/docs/use/tutorials/hunting-down-symbols.md +++ b/lldb/docs/use/tutorials/custom-symbol-resolution.md @@ -1,4 +1,4 @@ -# Hunting down symbols with Scripted Symbol Locator +# Finding Symbols With A Scripted Symbol Locator The **Scripted Symbol Locator** lets you write a Python class that tells LLDB where to find executables, symbol files, and source files for your debug _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
