[Lldb-commits] [lldb] Fix comment typo in `StructuredDataPlugin.cpp` (PR #162637)

Max Desiatov via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 9 04:42:59 PDT 2025


https://github.com/MaxDesiatov created https://github.com/llvm/llvm-project/pull/162637

`structured-data ommand` -> `structured-data command`

>From 6eb937909ca641e949d4ea05b9dfb1f9be7121cd Mon Sep 17 00:00:00 2001
From: Max Desiatov <m_desiatov at apple.com>
Date: Thu, 9 Oct 2025 12:42:42 +0100
Subject: [PATCH] Fix comment typo in `StructuredDataPlugin.cpp`

`structured-data ommand` -> `structured-data command`
---
 lldb/source/Target/StructuredDataPlugin.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/source/Target/StructuredDataPlugin.cpp b/lldb/source/Target/StructuredDataPlugin.cpp
index 8e3ceb094b361..8ce7f9f391d7b 100644
--- a/lldb/source/Target/StructuredDataPlugin.cpp
+++ b/lldb/source/Target/StructuredDataPlugin.cpp
@@ -52,7 +52,7 @@ void StructuredDataPlugin::InitializeBasePluginForDebugger(Debugger &debugger) {
     if (!parent_command)
       return;
 
-    // Create the structured-data ommand object.
+    // Create the structured-data command object.
     auto command_name = "structured-data";
     auto command_sp = CommandObjectSP(new CommandStructuredData(interpreter));
 



More information about the lldb-commits mailing list